From ce1eb91fac1edc923b317caa83a3a4ab10e7c020 Mon Sep 17 00:00:00 2001 From: Rob Walch Date: Wed, 10 Apr 2013 18:47:59 -0400 Subject: [PATCH] node.getBBox() fallback. Fixes #21 --- src/bbox.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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 -- 2.39.5