Commit b5bca4b8 by Tomas Alabes

Merge pull request #814 from g-div/v2.1.2

fix the error/memleak in Firefox 3.0.x and 25.0.1 concerning getBBox
parents 424719f7 88387c34
...@@ -917,7 +917,13 @@ window.Raphael && window.Raphael.svg && function(R) { ...@@ -917,7 +917,13 @@ window.Raphael && window.Raphael.svg && function(R) {
try { try {
bbox = this.node.getBBox(); bbox = this.node.getBBox();
} catch(e) { } catch(e) {
// Firefox 3.0.x plays badly here // Firefox 3.0.x, 25.0.1 (probably more versions affected) play badly here - possible fix
bbox = {
x: this.node.clientLeft,
y: this.node.clientTop,
width: this.node.clientWidth,
height: this.node.clientHeight
}
} finally { } finally {
bbox = bbox || {}; bbox = bbox || {};
if(canvasHidden){ if(canvasHidden){
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -6717,7 +6717,13 @@ ...@@ -6717,7 +6717,13 @@
try { try {
bbox = this.node.getBBox(); bbox = this.node.getBBox();
} catch(e) { } catch(e) {
// Firefox 3.0.x plays badly here // Firefox 3.0.x, 25.0.1 (probably more versions affected) play badly here - possible fix
bbox = {
x: this.node.clientLeft,
y: this.node.clientTop,
width: this.node.clientWidth,
height: this.node.clientHeight
}
} finally { } finally {
bbox = bbox || {}; bbox = bbox || {};
if(canvasHidden){ if(canvasHidden){
......
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