efront 3.15.6 → 3.16.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apps/pivot/log/boot.js +32 -3
- package/coms/basic/JSAM.js +72 -19
- package/coms/basic/cross_.js +1 -1
- package/coms/basic/loader.js +2 -2
- package/coms/basic/matrix.js +51 -28
- package/coms/basic/parseYML.js +1 -1
- package/coms/basic/renderExpress.js +3 -3
- package/coms/frame/route.js +54 -17
- package/coms/zimoli/data.js +1 -6
- package/coms/zimoli/dispatch.js +13 -1
- package/coms/zimoli/getValue.js +1 -1
- package/coms/zimoli/menu.js +24 -0
- package/coms/zimoli/menuItem.html +4 -1
- package/coms/zimoli/menuItem.js +7 -0
- package/coms/zimoli/menuItem.less +23 -2
- package/coms/zimoli/menuList.js +24 -18
- package/coms/zimoli/moveupon.js +6 -4
- package/coms/zimoli/on.js +173 -162
- package/coms/zimoli/render.js +1 -1
- package/data/packexe-setup.sfx +0 -0
- package/package.json +1 -1
- package/public/efront.js +1 -1
package/coms/zimoli/render.js
CHANGED
|
@@ -585,7 +585,7 @@ var emiters = {
|
|
|
585
585
|
emiters.v = emiters.ng = emiters.on;
|
|
586
586
|
|
|
587
587
|
function getFromScopes(key, scope, parentScopes) {
|
|
588
|
-
if (key in scope) {
|
|
588
|
+
if (scope) if (key in scope) {
|
|
589
589
|
return scope[key];
|
|
590
590
|
}
|
|
591
591
|
if (parentScopes) for (var cx = parentScopes.length - 1; cx >= 0; cx--) {
|
package/data/packexe-setup.sfx
CHANGED
|
Binary file
|