@xuda.io/runtime-bundle 1.0.991 → 1.0.992
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
|
@@ -12569,12 +12569,14 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12569
12569
|
xuAttributes: $elm.data().xuAttributes || {},
|
|
12570
12570
|
xuData: $elm.data().xuData || {},
|
|
12571
12571
|
});
|
|
12572
|
-
|
|
12572
|
+
const original_data_obj = {
|
|
12573
12573
|
nodeP: _.cloneDeep($elm.data().xuData.node_org),
|
|
12574
12574
|
paramsP: $elm.data().xuData.paramsP,
|
|
12575
12575
|
$container: $elm.clone(true),
|
|
12576
12576
|
parent_infoP: parent_infoP,
|
|
12577
12577
|
};
|
|
12578
|
+
|
|
12579
|
+
$xurender.data().xuData.original_data_obj = original_data_obj;
|
|
12578
12580
|
}
|
|
12579
12581
|
$elm.replaceWith(tmp_$div.children());
|
|
12580
12582
|
func.events.delete_job(SESSION_ID, jobNoP);
|
|
@@ -10294,12 +10294,14 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10294
10294
|
xuAttributes: $elm.data().xuAttributes || {},
|
|
10295
10295
|
xuData: $elm.data().xuData || {},
|
|
10296
10296
|
});
|
|
10297
|
-
|
|
10297
|
+
const original_data_obj = {
|
|
10298
10298
|
nodeP: _.cloneDeep($elm.data().xuData.node_org),
|
|
10299
10299
|
paramsP: $elm.data().xuData.paramsP,
|
|
10300
10300
|
$container: $elm.clone(true),
|
|
10301
10301
|
parent_infoP: parent_infoP,
|
|
10302
10302
|
};
|
|
10303
|
+
|
|
10304
|
+
$xurender.data().xuData.original_data_obj = original_data_obj;
|
|
10303
10305
|
}
|
|
10304
10306
|
$elm.replaceWith(tmp_$div.children());
|
|
10305
10307
|
func.events.delete_job(SESSION_ID, jobNoP);
|