mirror of
https://github.com/casjaysdevdocker/caddy
synced 2025-01-19 06:34:25 -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;
|
||
|
}
|