|
|
@ -517,8 +517,10 @@ |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
BI.Widget.popContext = function () { |
|
|
|
BI.Widget.popContext = function () { |
|
|
|
contextStack.pop(); |
|
|
|
BI.Widget.context = context = contextStack.pop(); |
|
|
|
BI.Widget.context = context = null; |
|
|
|
if (contextStack.length <= 0) { |
|
|
|
|
|
|
|
BI.Widget.context = context = null; |
|
|
|
|
|
|
|
} |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
function pushTarget (_current) { |
|
|
|
function pushTarget (_current) { |
|
|
@ -527,8 +529,10 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
function popTarget () { |
|
|
|
function popTarget () { |
|
|
|
currentStack.pop(); |
|
|
|
BI.Widget.current = current = currentStack.pop(); |
|
|
|
BI.Widget.current = current = null; |
|
|
|
if (currentStack.length <= 0) { |
|
|
|
|
|
|
|
BI.Widget.current = current = null; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
BI.onBeforeMount = function (beforeMount) { |
|
|
|
BI.onBeforeMount = function (beforeMount) { |
|
|
|