@xuda.io/xuda-worker-bundle-min 1.3.1108 → 1.3.1110
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/index.js +4 -8
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -8433,27 +8433,25 @@ func.events.execute = async function (
|
|
|
8433
8433
|
SESSION_ID,
|
|
8434
8434
|
"xuda-event-javascript-module.mjs"
|
|
8435
8435
|
);
|
|
8436
|
-
|
|
8436
|
+
return await module.call_javascript(
|
|
8437
8437
|
SESSION_ID,
|
|
8438
8438
|
jobNoP,
|
|
8439
8439
|
refIdP,
|
|
8440
8440
|
dsSession
|
|
8441
8441
|
);
|
|
8442
|
-
return result
|
|
8443
8442
|
},
|
|
8444
8443
|
call_evaluate_javascript: async function () {
|
|
8445
8444
|
const module = await func.common.get_module(
|
|
8446
8445
|
SESSION_ID,
|
|
8447
8446
|
"xuda-event-javascript-module.mjs"
|
|
8448
8447
|
);
|
|
8449
|
-
|
|
8448
|
+
return await module.call_javascript(
|
|
8450
8449
|
SESSION_ID,
|
|
8451
8450
|
jobNoP,
|
|
8452
8451
|
refIdP,
|
|
8453
8452
|
dsSession,
|
|
8454
8453
|
true
|
|
8455
8454
|
);
|
|
8456
|
-
return result
|
|
8457
8455
|
},
|
|
8458
8456
|
execute_native_javascript: async function () {
|
|
8459
8457
|
const module = await func.common.get_module(
|
|
@@ -8461,7 +8459,7 @@ func.events.execute = async function (
|
|
|
8461
8459
|
"xuda-event-javascript-module.mjs"
|
|
8462
8460
|
);
|
|
8463
8461
|
|
|
8464
|
-
|
|
8462
|
+
return await module.run_javascript(
|
|
8465
8463
|
SESSION_ID,
|
|
8466
8464
|
jobNoP,
|
|
8467
8465
|
dsSession,
|
|
@@ -8469,7 +8467,6 @@ func.events.execute = async function (
|
|
|
8469
8467
|
${refIdP.value}
|
|
8470
8468
|
})(document.querySelector(\`[xu-ui-id=${elementP}]\`))`
|
|
8471
8469
|
);
|
|
8472
|
-
return result
|
|
8473
8470
|
},
|
|
8474
8471
|
execute_evaluate_javascript: async function () {
|
|
8475
8472
|
const module = await func.common.get_module(
|
|
@@ -8477,7 +8474,7 @@ func.events.execute = async function (
|
|
|
8477
8474
|
"xuda-event-javascript-module.mjs"
|
|
8478
8475
|
);
|
|
8479
8476
|
|
|
8480
|
-
|
|
8477
|
+
return await module.run_javascript(
|
|
8481
8478
|
SESSION_ID,
|
|
8482
8479
|
jobNoP,
|
|
8483
8480
|
dsSession,
|
|
@@ -8486,7 +8483,6 @@ func.events.execute = async function (
|
|
|
8486
8483
|
})(document.querySelector(\`[xu-ui-id=${elementP}]\`))`,
|
|
8487
8484
|
true
|
|
8488
8485
|
);
|
|
8489
|
-
return result
|
|
8490
8486
|
},
|
|
8491
8487
|
loader_on: async function () {
|
|
8492
8488
|
glb.CURRENT_APP_LOADING = null;
|