]> source.dussan.org Git - svg.js.git/commitdiff
prettier 3.2.4
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Thu, 27 Jun 2024 10:01:22 +0000 (12:01 +0200)
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Thu, 27 Jun 2024 10:01:22 +0000 (12:01 +0200)
src/modules/core/containerGeometry.js

index 32a3c8eceaa614f485b95293820c16c094ed7541..574581cb682edb2cf87975677eded6fee1962240 100644 (file)
@@ -17,7 +17,10 @@ export function dmove(dx, dy) {
       // Therefore we have to use getBoundingClientRect. But THAT is broken (as explained in the bug).
       // Funnily enough the broken behavior would work for us but that breaks it in chrome
       // So we have to replicate the broken behavior of FF by just reading the attributes of the svg itself
-      bbox = child.node instanceof getWindow().SVGSVGElement ? new Box(child.attr(['x', 'y', 'width', 'height'])) : child.bbox()
+      bbox =
+        child.node instanceof getWindow().SVGSVGElement
+          ? new Box(child.attr(['x', 'y', 'width', 'height']))
+          : child.bbox()
     } catch (e) {
       return
     }