mirror of
https://github.com/dockersrc/scripts
synced 2024-11-22 11:23:06 -05:00
8 lines
247 B
JavaScript
8 lines
247 B
JavaScript
|
function isupme() {
|
||
|
let proto = location.protocol;
|
||
|
let port = location.port;
|
||
|
let currentSite = window.location.hostname;
|
||
|
fullurllocation = proto + '//' + currentSite + ':' + port;
|
||
|
window.location = 'http://isup.me/' + fullurllocation;
|
||
|
}
|