@xuda.io/runtime-bundle 1.0.524 → 1.0.525
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,9 +12392,8 @@ 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 + "']")
|
|
12396
|
-
|
|
12397
|
-
.css('filter', 'blur(1px)');
|
|
12395
|
+
$("[xu-ui-id='" + val + "']").attr('xu-ui-id', val + ts);
|
|
12396
|
+
// .css('filter', 'blur(1px)');
|
|
12398
12397
|
});
|
|
12399
12398
|
|
|
12400
12399
|
let refreshed_ds;
|
|
@@ -10124,9 +10124,8 @@ 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 + "']")
|
|
10128
|
-
|
|
10129
|
-
.css('filter', 'blur(1px)');
|
|
10127
|
+
$("[xu-ui-id='" + val + "']").attr('xu-ui-id', val + ts);
|
|
10128
|
+
// .css('filter', 'blur(1px)');
|
|
10130
10129
|
});
|
|
10131
10130
|
|
|
10132
10131
|
let refreshed_ds;
|