fix bug where favicon changes incorrectly
This commit is contained in:
		
							parent
							
								
									edb621e0f5
								
							
						
					
					
						commit
						95c3349db7
					
				
					 1 changed files with 7 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -1,14 +1,17 @@
 | 
			
		|||
// borrowed from https://github.com/HenrikJoreteg/favicon-setter
 | 
			
		||||
export function setFavicon (href) {
 | 
			
		||||
  let faviconId = 'theFavicon'
 | 
			
		||||
  let link = document.createElement('link')
 | 
			
		||||
  let oldLink = document.getElementById(faviconId)
 | 
			
		||||
 | 
			
		||||
  if (oldLink.getAttribute('href') === href) {
 | 
			
		||||
    return
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  let link = document.createElement('link')
 | 
			
		||||
  link.id = faviconId
 | 
			
		||||
  link.rel = 'shortcut icon'
 | 
			
		||||
  link.type = 'image/png'
 | 
			
		||||
  link.href = href
 | 
			
		||||
  if (oldLink) {
 | 
			
		||||
    document.head.removeChild(oldLink)
 | 
			
		||||
  }
 | 
			
		||||
  document.head.removeChild(oldLink)
 | 
			
		||||
  document.head.appendChild(link)
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue