Ver código fonte

original display fixes for boolean turn off and on

Ivan Asmer 8 anos atrás
pai
commit
385e288bf9
1 arquivos alterados com 6 adições e 1 exclusões
  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;
 }