diff options
-rw-r--r-- | src/bbox.js | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/bbox.js b/src/bbox.js index f58e77b..ee101b2 100644 --- a/src/bbox.js +++ b/src/bbox.js @@ -1,7 +1,17 @@ SVG.BBox = function(element) { /* actual, native bounding box */ - var box = element.node.getBBox() + var box + try { + box = element.node.getBBox() + } catch(err) { + box = { + x: element.node.clientLeft, + y: element.node.clientTop, + width: element.node.clientWidth, + height: element.node.clientHeight + } + } /* include translations on x an y */ this.x = box.x + element.trans.x |