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 5b1be4c commit 50424b8Copy full SHA for 50424b8
spec/_static/javascripts/version_dropdown.js
@@ -23,7 +23,7 @@ function add_version_dropdown(json_loc, target_loc, text) {
23
a.title = key;
24
var url = target_loc + versions[key];
25
var http = new XMLHttpRequest();
26
- http.open('HEAD', url + "/" + path );
+ http.open('GET', url + "/" + path );
27
http.onreadystatechange = function() {
28
if (this.readyState == this.DONE) {
29
if(this.status != 404 ){
0 commit comments