|
@@ -17,12 +17,17 @@ function nbInit(a,b){
|
|
var root=document, $s=a;
|
|
var root=document, $s=a;
|
|
|
|
|
|
var dom = null;
|
|
var dom = 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 = selector.slice(0,selector.length - 4)
|
|
selector = selector.slice(0,selector.length - 4)
|
|
dom = true;
|
|
dom = true;
|
|
}
|
|
}
|
|
|
|
+ if (selector.indexOf('|closure') === selector.length - 8){
|
|
|
|
+ selector = selector.slice(0,selector.length - 8)
|
|
|
|
+ closure = true;
|
|
|
|
+ }
|
|
if (root === document){
|
|
if (root === document){
|
|
var items = [root.getElementById(selector)];
|
|
var items = [root.getElementById(selector)];
|
|
}
|
|
}
|
|
@@ -97,11 +102,11 @@ function nbInit(a,b){
|
|
nBind(function (item, $s, selector, value, key, thisByClass){
|
|
nBind(function (item, $s, selector, value, key, thisByClass){
|
|
value = typeof value === 'undefined' ? $s[selector] : value;
|
|
value = typeof value === 'undefined' ? $s[selector] : value;
|
|
var keyExists = typeof key !== 'undefined';
|
|
var keyExists = typeof key !== 'undefined';
|
|
|
|
+ if (closure){
|
|
|
|
+ item.nbData = value[0].apply(item, value.slice(1))
|
|
|
|
+ }
|
|
if ((!item.children.length && !Array.isArray(value) && typeof value === 'object') || thisByClass || dom){ //hash array on single leaf node -> set attrs on the tag
|
|
if ((!item.children.length && !Array.isArray(value) && typeof value === 'object') || thisByClass || dom){ //hash array on single leaf node -> set attrs on the tag
|
|
recursiveObjectSet(item,value);
|
|
recursiveObjectSet(item,value);
|
|
- //for (var key in value){
|
|
|
|
- //item[key] = value[key];
|
|
|
|
- //}
|
|
|
|
if (!thisByClass && !dom){
|
|
if (!thisByClass && !dom){
|
|
item.nbData = value;
|
|
item.nbData = value;
|
|
}
|
|
}
|
|
@@ -182,6 +187,9 @@ function nbInit(a,b){
|
|
|
|
|
|
function syncFromDOM(prop){
|
|
function syncFromDOM(prop){
|
|
nBind(function(item, $s, selector){
|
|
nBind(function(item, $s, selector){
|
|
|
|
+ if (closure){
|
|
|
|
+ return item.nbData()
|
|
|
|
+ }
|
|
if (item.type === 'radio'){
|
|
if (item.type === 'radio'){
|
|
if (item.checked)
|
|
if (item.checked)
|
|
return item.value;
|
|
return item.value;
|
|
@@ -262,6 +270,7 @@ function nbInit(a,b){
|
|
//}
|
|
//}
|
|
syncFromDOM(prop);
|
|
syncFromDOM(prop);
|
|
dom = null;
|
|
dom = null;
|
|
|
|
+ closure = null;
|
|
return target[prop];
|
|
return target[prop];
|
|
},
|
|
},
|
|
set(target, prop, value){
|
|
set(target, prop, value){
|
|
@@ -269,6 +278,7 @@ function nbInit(a,b){
|
|
target[prop] = value
|
|
target[prop] = value
|
|
syncToDOM(prop);
|
|
syncToDOM(prop);
|
|
dom = null;
|
|
dom = null;
|
|
|
|
+ closure = null;
|
|
return true;
|
|
return true;
|
|
},
|
|
},
|
|
})
|
|
})
|