Explorar el Código

recursive object set gives ability to set dom element subobjects like classList

Ivan Asmer hace 8 años
padre
commit
32a152e9a5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      static/nb.js

+ 1 - 1
static/nb.js

@@ -75,7 +75,7 @@ function nbInit(a,b){
 
     function recursiveObjectSet(item, value){
         for (var key in value){
-            if (typeof value !== 'object'){
+            if (typeof value[key] !== 'object'){
                 item[key] = value[key];
             }
             else {