Pinafore-Web-Client-Frontend/src/routes/_utils/setFavicon.js

18 lines
466 B
JavaScript
Raw Normal View History

2018-02-16 17:59:44 +01:00
// borrowed from https://github.com/HenrikJoreteg/favicon-setter
export function setFavicon (href) {
2019-08-03 22:49:37 +02:00
const faviconId = 'theFavicon'
const oldLink = document.getElementById(faviconId)
if (oldLink.getAttribute('href') === href) {
return
}
2019-08-03 22:49:37 +02:00
const link = document.createElement('link')
2018-02-16 17:59:44 +01:00
link.id = faviconId
link.rel = 'shortcut icon'
link.type = 'image/png'
link.href = href
document.head.removeChild(oldLink)
2018-02-16 17:59:44 +01:00
document.head.appendChild(link)
2018-02-16 18:01:03 +01:00
}