@xuda.io/runtime-bundle 1.0.780 → 1.0.781
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/js/xuda-runtime-bundle.js +4 -4
- package/js/xuda-runtime-bundle.min.js +3 -3
- package/js/xuda-runtime-slim.js +4 -4
- package/js/xuda-runtime-slim.min.es.js +4 -4
- package/js/xuda-runtime-slim.min.js +3 -3
- package/js/xuda-server-bundle.min.mjs +3 -3
- package/js/xuda-server-bundle.mjs +4 -4
- package/js/xuda-worker-bundle.js +4 -4
- package/js/xuda-worker-bundle.min.js +3 -3
- package/package.json +1 -1
|
@@ -36706,14 +36706,14 @@ func.events.execute = async function (
|
|
|
36706
36706
|
|
|
36707
36707
|
call_native_javascript: async function () {
|
|
36708
36708
|
const module = await func.common.get_module(SESSION_ID, 'xuda-event-javascript-module.mjs');
|
|
36709
|
-
const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, false, $
|
|
36709
|
+
const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, false, $div);
|
|
36710
36710
|
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
|
|
36711
36711
|
|
|
36712
36712
|
return result;
|
|
36713
36713
|
},
|
|
36714
36714
|
call_evaluate_javascript: async function () {
|
|
36715
36715
|
const module = await func.common.get_module(SESSION_ID, 'xuda-event-javascript-module.mjs');
|
|
36716
|
-
const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, true, $
|
|
36716
|
+
const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, true, $div);
|
|
36717
36717
|
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
|
|
36718
36718
|
|
|
36719
36719
|
return result;
|
|
@@ -36732,7 +36732,7 @@ func.events.execute = async function (
|
|
|
36732
36732
|
null,
|
|
36733
36733
|
null,
|
|
36734
36734
|
evt,
|
|
36735
|
-
$
|
|
36735
|
+
$div,
|
|
36736
36736
|
);
|
|
36737
36737
|
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
|
|
36738
36738
|
|
|
@@ -36752,7 +36752,7 @@ func.events.execute = async function (
|
|
|
36752
36752
|
null,
|
|
36753
36753
|
null,
|
|
36754
36754
|
evt,
|
|
36755
|
-
$
|
|
36755
|
+
$div,
|
|
36756
36756
|
);
|
|
36757
36757
|
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
|
|
36758
36758
|
|