Browse Source

undefined check

Ivan Asmer 8 years ago
parent
commit
449c4061fd
1 changed files with 3 additions and 0 deletions
  1. 3 0
      static/nb.js

+ 3 - 0
static/nb.js

@@ -74,6 +74,9 @@ function nbInit(a,b){
     }
 
     function recursiveObjectSet(item, value){
+        if (typeof item === 'undefined'){
+            return;
+        }
         for (var key in value){
             if (typeof value[key] !== 'object'){
                 item[key] = value[key];