浏览代码

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

Ivan Asmer 8 年之前
父节点
当前提交
32a152e9a5
共有 1 个文件被更改,包括 1 次插入1 次删除
  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 {