Explorar el Código

original display fixes for boolean turn off and on

Ivan Asmer hace 8 años
padre
commit
385e288bf9
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. 6 1
      static/nb.js

+ 6 - 1
static/nb.js

@@ -267,7 +267,12 @@ function nbInit(a,b){
 
 function nbGetData(el){
     while (!('nbData' in el)){
-        el = el.parentElement || return null;
+        if (el.parentElement){
+            el = el.parentElement;
+        }
+        else {
+            return null;
+        }
     }
     return el.nbData;
 }