ソースを参照

closure fake selector

Ivan Asmer 7 年 前
コミット
ff636896c9
1 ファイル変更2 行追加2 行削除
  1. 2 2
      static/nb.js

+ 2 - 2
static/nb.js

@@ -20,11 +20,11 @@ function nbInit(a,b){
     var closure = null;
 
     function searchElement(root, selector){
-        if (selector.indexOf('|dom') === selector.length - 4){
+        if ((selector.indexOf('|dom') === selector.length - 4) && (selector.length > 4)){
             selector = selector.slice(0,selector.length - 4)
             dom      = true;
         }
-        if (selector.indexOf('|closure') === selector.length - 8){
+        if ((selector.indexOf('|closure') === selector.length - 8) && (selector.length > 8)){
             selector = selector.slice(0,selector.length - 8)
             closure  = true;
         }