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