Selaa lähdekoodia

Merge pull request #436 from Demonthos/fix_remove_style

remove style attributes correctly for the js interpreter
Jon Kelley 3 vuotta sitten
vanhempi
commit
0dbdaf1973
1 muutettua tiedostoa jossa 3 lisäystä ja 1 poistoa
  1. 3 1
      packages/interpreter/src/interpreter.js

+ 3 - 1
packages/interpreter/src/interpreter.js

@@ -140,7 +140,9 @@ export class Interpreter {
   RemoveAttribute(root, field, ns) {
     const name = field;
     const node = this.nodes[root];
-    if (ns !== null || ns !== undefined) {
+    if (ns == "style") {
+      node.style.removeProperty(name);
+    } else if (ns !== null || ns !== undefined) {
       node.removeAttributeNS(ns, name);
     } else if (name === "value") {
       node.value = "";