From 28f5ef22847df6ad07e43783cce411522e8b5435 Mon Sep 17 00:00:00 2001 From: Matthias Jentsch Date: Mon, 8 Sep 2014 16:37:20 +0200 Subject: [PATCH] Fix elementsOverlap function for SVG elements Access SVG getBBox function to acquire the bounding box for SVG elements --- public/js/icinga/utils.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/js/icinga/utils.js b/public/js/icinga/utils.js index 1a6759d87..ba4d7a040 100644 --- a/public/js/icinga/utils.js +++ b/public/js/icinga/utils.js @@ -217,9 +217,9 @@ return false; } var at = aoff.top; - var ah = a.offsetHeight; + var ah = a.offsetHeight || (a.getBBox && a.getBBox().height); var al = aoff.left; - var aw = a.offsetWidth; + var aw = a.offsetWidth || (a.getBBox && a.getBBox().width); // b bounds var boff = $(b).offset(); @@ -227,9 +227,9 @@ return false; } var bt = boff.top; - var bh = b.offsetHeight; + var bh = b.offsetHeight || (b.getBBox && b.getBBox().height); var bl = boff.left; - var bw = b.offsetWidth; + var bw = b.offsetWidth || (b.getBBox && b.getBBox().width); return !(at > (bt + bh) || bt > (at + ah)) && !(bl > (al + aw) || al > (bl + bw)); },