Commit 7b67a148 by Tomas Alabes

IE 11 parentElement fix

parent b5bca4b8
......@@ -908,10 +908,17 @@ window.Raphael && window.Raphael.svg && function(R) {
var hide = true;
}
var canvasHidden = false,
containerStyle = this.paper.canvas.parentElement.style;
if(containerStyle.display == "none"){
canvasHidden = true;
containerStyle.display = "";
containerStyle;
if (this.paper.canvas.parentElement) {
containerStyle = this.paper.canvas.parentElement.style;
} //IE10+ can't find parentElement
else if (this.paper.canvas.parentNode) {
containerStyle = this.paper.canvas.parentNode.style;
}
if(containerStyle && containerStyle.display == "none") {
canvasHidden = true;
containerStyle.display = "";
}
var bbox = {};
try {
......
Subproject commit eef80ed8d188423c2272746fb8ae5cc8dad84cb1
Subproject commit 42374a7804189a8e6dcc30675842888a8ce6e741
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -376,7 +376,7 @@
return "You are running Eve " + version;
};
(typeof module != "undefined" && module.exports) ? (module.exports = eve) : (typeof define != "undefined" ? (define("eve", [], function() { return eve; })) : (glob.eve = eve));
})(this);
})(window || this);
// ┌─────────────────────────────────────────────────────────────────────┐ \\
// │ "Raphaël 2.1.0" - JavaScript Vector Library │ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
......@@ -6708,10 +6708,17 @@
var hide = true;
}
var canvasHidden = false,
containerStyle = this.paper.canvas.parentElement.style;
if(containerStyle.display == "none"){
canvasHidden = true;
containerStyle.display = "";
containerStyle;
if (this.paper.canvas.parentElement) {
containerStyle = this.paper.canvas.parentElement.style;
} //IE10+ can't find parentElement
else if (this.paper.canvas.parentNode) {
containerStyle = this.paper.canvas.parentNode.style;
}
if(containerStyle && containerStyle.display == "none") {
canvasHidden = true;
containerStyle.display = "";
}
var bbox = {};
try {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment