|
@@ -20,11 +20,11 @@ function nbInit(a,b){
|
|
var closure = null;
|
|
var closure = null;
|
|
|
|
|
|
function searchElement(root, selector){
|
|
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)
|
|
selector = selector.slice(0,selector.length - 4)
|
|
dom = true;
|
|
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)
|
|
selector = selector.slice(0,selector.length - 8)
|
|
closure = true;
|
|
closure = true;
|
|
}
|
|
}
|