🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay
2022-10-10 22:49:31 -04:00
parent 9627f80b7a
commit 054b9b9919
28 changed files with 381 additions and 33 deletions

View File

@@ -0,0 +1,7 @@
function loadDomain() {
let proto = location.protocol;
let port = location.port;
let url = location.hostname;
var display = document.getElementById('display-domain');
display.innerHTML = proto + '//' + url + ':' + port;
}