We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6969d7 commit 23b8cafCopy full SHA for 23b8caf
src/easeljs/display/Bitmap.js
@@ -212,7 +212,10 @@ this.createjs = this.createjs||{};
212
**/
213
p.clone = function(node) {
214
var image = this.image;
215
- if(image && node){ image = image.cloneNode(); }
+ if(image && node){
216
+ image = image.cloneNode();
217
+ image.src = image.src; // IE cloneNode bug fix
218
+ }
219
var o = new Bitmap(image);
220
if (this.sourceRect) { o.sourceRect = this.sourceRect.clone(); }
221
this._cloneProps(o);
0 commit comments