Set href on favicon <link> tag second time in a timeout

This somehow fixes chrome inconsistencies when changing favicon
This commit is contained in:
Piotr Sarnacki 2015-02-25 17:00:55 +01:00
parent 8087761c8a
commit 520361cb78

View File

@ -16,7 +16,11 @@ manager.prototype.setFavicon = (href) ->
link = @createLinkTag()
head.appendChild(link)
link.setAttribute('href', href)
setTimeout ->
link.setAttribute('href', href)
, 1
manager.prototype.getLinkTag = ->
links = @getHeadTag().getElementsByTagName('link')