@xuda.io/runtime-bundle 1.0.523 → 1.0.524
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
|
@@ -12392,7 +12392,9 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
12392
12392
|
const ts = Date.now();
|
|
12393
12393
|
// remove old panel content
|
|
12394
12394
|
$.each(panel_val.ids, async function (key, val) {
|
|
12395
|
-
$("[xu-ui-id='" + val + "']")
|
|
12395
|
+
$("[xu-ui-id='" + val + "']")
|
|
12396
|
+
.attr('xu-ui-id', val + ts)
|
|
12397
|
+
.css('filter', 'blur(1px)');
|
|
12396
12398
|
});
|
|
12397
12399
|
|
|
12398
12400
|
let refreshed_ds;
|
|
@@ -10124,7 +10124,9 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
10124
10124
|
const ts = Date.now();
|
|
10125
10125
|
// remove old panel content
|
|
10126
10126
|
$.each(panel_val.ids, async function (key, val) {
|
|
10127
|
-
$("[xu-ui-id='" + val + "']")
|
|
10127
|
+
$("[xu-ui-id='" + val + "']")
|
|
10128
|
+
.attr('xu-ui-id', val + ts)
|
|
10129
|
+
.css('filter', 'blur(1px)');
|
|
10128
10130
|
});
|
|
10129
10131
|
|
|
10130
10132
|
let refreshed_ds;
|