Skip to content

Commit f649007

Browse files
committed
move print
1 parent 24c1479 commit f649007

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/_static/javascripts/version_dropdown.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ function assign_href( a, url, path ) {
22
var http = new XMLHttpRequest();
33
http.open('GET', url + "/" + path );
44
http.onreadystatechange = function() {
5-
console.log('%%%%', this);
65
if (this.readyState == this.DONE) {
76
if(this.status != 404 ){
7+
console.log('%%%%', this);
88
a.href = url + "/" + path;
99
}
1010
else {

0 commit comments

Comments
 (0)