Explorar el Código

undefined check

Ivan Asmer hace 8 años
padre
commit
449c4061fd
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  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];