Fix window.location mistakes in previous code
Sorry guys, I commit the incomplete code. It should be window.location.assign(url); However this is just tested in google chrome.
This commit is contained in:
parent
a2147c4f89
commit
a319fa8d47
|
@ -32,7 +32,7 @@ $(document).ready(function(){
|
||||||
});
|
});
|
||||||
|
|
||||||
function goToVersionPage(url){
|
function goToVersionPage(url){
|
||||||
window.location(url);
|
window.location.assign(url);
|
||||||
}
|
}
|
||||||
|
|
||||||
function createVersionsDropdown(filename, files) {
|
function createVersionsDropdown(filename, files) {
|
||||||
|
|
Loading…
Reference in New Issue