@flourish/chart-layout
Advanced tools
Comparing version 9.4.2 to 9.4.3
{ | ||
"name": "@flourish/chart-layout", | ||
"version": "9.4.2", | ||
"version": "9.4.3", | ||
"description": "Create axes", | ||
@@ -5,0 +5,0 @@ "main": "chart-layout.js", |
@@ -0,1 +1,4 @@ | ||
# 9.4.3 | ||
* Fix IE11 bug | ||
# 9.4.2 | ||
@@ -2,0 +5,0 @@ * Fix background positioning |
@@ -21,4 +21,4 @@ import { select } from "d3-selection"; | ||
if (container_is_svg) return container; | ||
var current_node = container_node.parentElement; | ||
while (current_node && !isSvg(current_node)) current_node = current_node.parentElement; | ||
var current_node = container_node.parentNode; | ||
while (current_node && !isSvg(current_node)) current_node = current_node.parentNode; | ||
if (!isSvg(current_node)) throw new Error("target must be an SVG or a descendant of an SVG"); | ||
@@ -25,0 +25,0 @@ return select(current_node); |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
425556