efront 4.7.1 → 4.7.3
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/#/345/233/275/351/231/205/345/214/226.yml +4 -1
- package/apps/moue/home/index2.vue +1 -1
- package/apps/pivot/api.yml +1 -1
- package/apps/pivot/cert/orders.xht +9 -2
- package/coms/basic_/exec_.js +0 -1
- package/coms/basic_/exec_test.js +8 -1
- package/coms/compile/audit.js +106 -8
- package/coms/compile/audit_test.js +18 -3
- package/coms/compile/autoenum_test.js +1 -1
- package/coms/compile/common.js +105 -31
- package/coms/compile/downLevel.js +11 -11
- package/coms/docs/codecolor.js +3 -3
- package/coms/pivot/plist.js +3 -3
- package/coms/reptile/colors.js +2 -2
- package/coms/third-party/crypto.js +2 -1
- package/coms/zimoli/menu.js +2 -1
- package/coms/zimoli/moue.js +1 -0
- package/coms/zimoli/select.js +2 -1
- package/coms/zimoli/slider.js +2 -1
- package/package.json +1 -1
- package/public/efront.js +1 -1
- package/readme-en.md +2 -0
- package/readme.md +2 -0
|
@@ -1089,7 +1089,8 @@ var CryptoJS = CryptoJS || (function (Math, undefined) {
|
|
|
1089
1089
|
var superInit = WordArray.init;
|
|
1090
1090
|
|
|
1091
1091
|
// Augment WordArray.init to handle typed arrays
|
|
1092
|
-
var subInit = WordArray.init = function (
|
|
1092
|
+
var subInit = WordArray.init = function () {
|
|
1093
|
+
var [typedArray] = arguments;
|
|
1093
1094
|
// Convert buffers to uint8
|
|
1094
1095
|
if (typedArray instanceof ArrayBuffer) {
|
|
1095
1096
|
typedArray = new Uint8Array(typedArray);
|
package/coms/zimoli/menu.js
CHANGED
|
@@ -90,7 +90,8 @@ var getTreeNodes = function (elem) {
|
|
|
90
90
|
return nodes;
|
|
91
91
|
};
|
|
92
92
|
|
|
93
|
-
function main(
|
|
93
|
+
function main() {
|
|
94
|
+
var [elem, mode] = arguments;
|
|
94
95
|
if (isElement(elem)) {
|
|
95
96
|
// var os = /Samsung|Firefox|Chrome|MSIE|Safari/i.exec(navigator.userAgent);
|
|
96
97
|
// if (os) {
|
package/coms/zimoli/moue.js
CHANGED
package/coms/zimoli/select.js
CHANGED
|
@@ -41,7 +41,8 @@ on('touchend')(window, function (event) {
|
|
|
41
41
|
}
|
|
42
42
|
activeElement.blur();
|
|
43
43
|
})
|
|
44
|
-
function select(
|
|
44
|
+
function select() {
|
|
45
|
+
var [target, list, removeOnSelect, direction] = arguments;
|
|
45
46
|
if (/^[yvxh]/i.test(removeOnSelect)) {
|
|
46
47
|
direction = removeOnSelect;
|
|
47
48
|
removeOnSelect = arguments[3];
|
package/coms/zimoli/slider.js
CHANGED
|
@@ -10,7 +10,8 @@ var abs = Math.abs;
|
|
|
10
10
|
*
|
|
11
11
|
* @param {Boolean|Array|Function} autoplay
|
|
12
12
|
*/
|
|
13
|
-
function slider(
|
|
13
|
+
function slider() {
|
|
14
|
+
var [autoplay, circle = true] = arguments;
|
|
14
15
|
var outter = container.cloneNode();
|
|
15
16
|
{
|
|
16
17
|
for (let cx = 0, dx = arguments.length; cx < dx; cx++) {
|