Selaa lähdekoodia

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

Ivan Asmer 8 vuotta sitten
vanhempi
commit
32a152e9a5
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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 {