Add files via upload

This commit is contained in:
grant-kun 2022-04-06 10:39:34 -05:00 committed by GitHub
parent cb2f76e0af
commit 58283588f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -311,7 +311,14 @@
}
document.write("<title>Antheia</title>")
document.write("<link rel=\"icon\" href=\"./icon.png\">")
function setFavicons(favImg){
let headTitle = document.querySelector('head');
let setFavicon = document.createElement('link');
setFavicon.setAttribute('rel','shortcut icon');
setFavicon.setAttribute('href',favImg);
headTitle.appendChild(setFavicon);
}
setFavicons('https://raw.githubusercontent.com/squiresgrant/Antheia/main/icon.ico');
var bank = getCookie('bank');
var inv = getCookie('inv');
var inv = getCookie('storage');