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.
2 parents 4d16f6d + a43ddaf commit 6f0f714Copy full SHA for 6f0f714
src/easeljs/display/Stage.js
@@ -805,10 +805,11 @@ this.createjs = this.createjs||{};
805
var list = this._mouseOverTarget = [];
806
807
// generate ancestor list and check for cursor:
808
+ // Note: Internet Explorer won't update null or undefined cursor properties
809
t = target;
810
while (t) {
811
list.unshift(t);
- if (!cursor) { cursor = t.cursor; }
812
+ if (!cursor && t.cursor) { cursor = t.cursor; }
813
t = t.parent;
814
}
815
this.canvas.style.cursor = cursor;
0 commit comments