@ -32,8 +32,9 @@
Fix.Model.target = target = _target;
}
function popTarget() {
Fix.Model.target = target = targetStack.pop();
function popTarget () {
targetStack.pop();
Fix.Model.target = target = null;
var oldWatch = Fix.watch;
@ -33,7 +33,8 @@
@ -517,7 +517,8 @@
};
BI.Widget.popContext = function () {
BI.Widget.context = context = contextStack.pop();
contextStack.pop();
BI.Widget.context = context = null;
function pushTarget (_current) {
@ -526,7 +527,8 @@
BI.Widget.current = current = currentStack.pop();
currentStack.pop();
BI.Widget.current = current = null;
BI.onBeforeMount = function (beforeMount) {