Change to regular if() statement
This commit is contained in:
parent
49f22cc7a3
commit
e90927c2fd
@ -488,7 +488,7 @@
|
|||||||
var parent = this.__closestGroupOrSvg();
|
var parent = this.__closestGroupOrSvg();
|
||||||
if (parent.childNodes.length > 0) {
|
if (parent.childNodes.length > 0) {
|
||||||
if (this.__currentElement.nodeName === "path") {
|
if (this.__currentElement.nodeName === "path") {
|
||||||
this.__currentElementsToStyle || (this.__currentElementsToStyle = { element: parent, children: [] });
|
if (!this.__currentElementsToStyle) this.__currentElementsToStyle = {element: parent, children: []};
|
||||||
this.__currentElementsToStyle.children.push(this.__currentElement)
|
this.__currentElementsToStyle.children.push(this.__currentElement)
|
||||||
this.__applyCurrentDefaultPath();
|
this.__applyCurrentDefaultPath();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user