From ee26b122e6670ebc553cf405391df89a179b514f Mon Sep 17 00:00:00 2001 From: MattMo Date: Wed, 5 Jan 2022 17:08:12 -0800 Subject: [PATCH] Added crossOrign flag to images so that we can load them correctly when origins are different. --- aperture.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aperture.js b/aperture.js index 898a486..3fecbcb 100644 --- a/aperture.js +++ b/aperture.js @@ -15,6 +15,7 @@ class Aperture { img.onload = () => resolve(); img.onerror = () => resolve(); }); + img.crossOrigin = "Anonymous"; img.src = image; await promise; } @@ -56,6 +57,7 @@ class Aperture { img.onload = () => resolve(); img.onerror = () => resolve(); }); + img.crossOrigin = "Anonymous"; img.src = image; await promise; @@ -89,6 +91,7 @@ class Aperture { img.onload = () => resolve(); img.onerror = () => resolve(); }); + img.crossOrigin = "Anonymous"; img.src = image; await promise; }