From 73f5c5304cb717db0f6cfa4ba94a40acd3a7f7d8 Mon Sep 17 00:00:00 2001 From: Nida Hussain Date: Wed, 31 Oct 2018 15:58:59 -0700 Subject: [PATCH 1/2] Add onload call after creating img tag for Chrome to work --- tinycon.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tinycon.js b/tinycon.js index 0b77a73..6ea5b59 100644 --- a/tinycon.js +++ b/tinycon.js @@ -135,6 +135,7 @@ // refresh tag in page refreshFavicon(); }; + faviconImage.oload(); // allow cross origin resource requests if the image is not a data:uri // as detailed here: https://github.com/mrdoob/three.js/issues/1305 From 04c9cb6ec943b1b19b98653dcc33b33506281b09 Mon Sep 17 00:00:00 2001 From: Nida Hussain Date: Thu, 31 Jan 2019 16:43:19 -0800 Subject: [PATCH 2/2] Update tinycon.js fix typo --- tinycon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinycon.js b/tinycon.js index 6ea5b59..7e03e1e 100644 --- a/tinycon.js +++ b/tinycon.js @@ -135,7 +135,7 @@ // refresh tag in page refreshFavicon(); }; - faviconImage.oload(); + faviconImage.onload(); // allow cross origin resource requests if the image is not a data:uri // as detailed here: https://github.com/mrdoob/three.js/issues/1305