@xuda.io/runtime-bundle 1.0.346 → 1.0.347
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-slim.js
CHANGED
|
@@ -12396,6 +12396,11 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12396
12396
|
|
|
12397
12397
|
const post_render = async function () {
|
|
12398
12398
|
if (value) {
|
|
12399
|
+
// abort if already rended
|
|
12400
|
+
if ($elm[0].tagName !== 'XURENDER' && $elm?.length) {
|
|
12401
|
+
return func.events.delete_job(SESSION_ID, jobNoP);
|
|
12402
|
+
}
|
|
12403
|
+
|
|
12399
12404
|
let original_data_obj = $elm.data().xuData.original_data_obj;
|
|
12400
12405
|
|
|
12401
12406
|
if (!original_data_obj) {
|
|
@@ -10462,6 +10462,11 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10462
10462
|
|
|
10463
10463
|
const post_render = async function () {
|
|
10464
10464
|
if (value) {
|
|
10465
|
+
// abort if already rended
|
|
10466
|
+
if ($elm[0].tagName !== 'XURENDER' && $elm?.length) {
|
|
10467
|
+
return func.events.delete_job(SESSION_ID, jobNoP);
|
|
10468
|
+
}
|
|
10469
|
+
|
|
10465
10470
|
let original_data_obj = $elm.data().xuData.original_data_obj;
|
|
10466
10471
|
|
|
10467
10472
|
if (!original_data_obj) {
|