We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24c1479 commit f649007Copy full SHA for f649007
spec/_static/javascripts/version_dropdown.js
@@ -2,9 +2,9 @@ function assign_href( a, url, path ) {
2
var http = new XMLHttpRequest();
3
http.open('GET', url + "/" + path );
4
http.onreadystatechange = function() {
5
- console.log('%%%%', this);
6
if (this.readyState == this.DONE) {
7
if(this.status != 404 ){
+ console.log('%%%%', this);
8
a.href = url + "/" + path;
9
}
10
else {
0 commit comments