From a5a72ee3219e38b2c829fc02b3ccd2ff1ad1f869 Mon Sep 17 00:00:00 2001 From: Sean Wilkinson Date: Wed, 11 Dec 2013 19:30:22 -0600 Subject: [PATCH 1/2] Set `image.crossOrigin = 'Anonymous';` to avoid tainted canvas problem --- src/drawer.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/drawer.js b/src/drawer.js index a25e0aee..a53d0d3b 100644 --- a/src/drawer.js +++ b/src/drawer.js @@ -419,6 +419,7 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{ this.downloading++; image = new Image(); + image.crossOrigin = 'Anonymous'; complete = function( imagesrc, resultingImage ){ _this.downloading--; From 746d53dbc07ec62f54b679334da73016f72bab5e Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Thu, 12 Dec 2013 10:03:55 -0800 Subject: [PATCH 2/2] Changelog for #308 --- changelog.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.txt b/changelog.txt index 5a831281..abb9fed9 100644 --- a/changelog.txt +++ b/changelog.txt @@ -5,6 +5,7 @@ OPENSEADRAGON CHANGELOG * Fixed: Nav button highlight states aren't quite aligned on Firefox (#303) * Added ControlAnchor options for default controls (#304) +* Enabled basic cross-domain tile loading without tainting canvas (works in Chrome and Firefox) (#308) 1.0.0: