Explorar o código

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

Ivan Asmer %!s(int64=8) %!d(string=hai) anos
pai
achega
32a152e9a5
Modificáronse 1 ficheiros con 1 adicións e 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 {