Explorar o código

Merge pull request #436 from Demonthos/fix_remove_style

remove style attributes correctly for the js interpreter
Jon Kelley %!s(int64=3) %!d(string=hai) anos
pai
achega
0dbdaf1973
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  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 = "";