mirror of https://github.com/abpframework/abp.git
committed by
GitHub
1 changed files with 10 additions and 4 deletions
@ -1,6 +1,12 @@ |
|||
document.addEventListener('DOMContentLoaded', function (event) { |
|||
document.addEventListener("DOMContentLoaded", function (event) { |
|||
setTimeout(function () { |
|||
window.clientName = document.getElementById("redirectButton").getAttribute("cname"); |
|||
window.location = document.getElementById('redirectButton').getAttribute('href'); |
|||
}, 3000); |
|||
var redirectButton = document.getElementById("redirectButton"); |
|||
|
|||
if(!redirectButton){ |
|||
return; |
|||
} |
|||
|
|||
redirectButton.getAttribute("cname"); |
|||
redirectButton.getAttribute("href"); |
|||
}, 3000) |
|||
}); |
|||
|
|||
Loading…
Reference in new issue