mirror of
https://github.com/casjaysdevdocker/tools
synced 2025-01-31 00:34:20 -05:00
5eb3ff1598
applications/ configs/ lists/ wwwroot/
7 lines
192 B
JavaScript
7 lines
192 B
JavaScript
function homepage() {
|
|
let proto = location.protocol;
|
|
let port = location.port;
|
|
let currentSite = window.location.hostname;
|
|
window.location = proto + '//' + currentSite + ':' + port;
|
|
}
|