We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6be65cf commit 3969f6aCopy full SHA for 3969f6a
1 file changed
src/preloadjs/loaders/ImageLoader.js
@@ -91,9 +91,10 @@ this.createjs = this.createjs || {};
91
return;
92
}
93
94
- if (this._preferXHR && this._item.crossOrigin != null) {
+ if (!createjs.RequestUtils.isLocal(this._item.src) && this._item.crossOrigin != null) {
95
this._tag.crossOrigin = this._item.crossOrigin;
96
97
+
98
this.AbstractLoader_load();
99
};
100
0 commit comments