@xuda.io/runtime-bundle 1.0.459 → 1.0.461
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
|
@@ -8662,8 +8662,8 @@ func.UI.utils.get_panels_wrapper_from_dom = async function (SESSION_ID, $xu_embe
|
|
|
8662
8662
|
|
|
8663
8663
|
let ids = [];
|
|
8664
8664
|
|
|
8665
|
-
$.each($panel_div.children, function (key, val) {
|
|
8666
|
-
if ($(val).data.xuPanelData) {
|
|
8665
|
+
$.each($panel_div.children(), function (key, val) {
|
|
8666
|
+
if ($(val).data().xuPanelData) {
|
|
8667
8667
|
ids.push($(val).attr('xu-ui-id'));
|
|
8668
8668
|
}
|
|
8669
8669
|
});
|
|
@@ -8663,8 +8663,8 @@ func.UI.utils.get_panels_wrapper_from_dom = async function (SESSION_ID, $xu_embe
|
|
|
8663
8663
|
|
|
8664
8664
|
let ids = [];
|
|
8665
8665
|
|
|
8666
|
-
$.each($panel_div.children, function (key, val) {
|
|
8667
|
-
if ($(val).data.xuPanelData) {
|
|
8666
|
+
$.each($panel_div.children(), function (key, val) {
|
|
8667
|
+
if ($(val).data().xuPanelData) {
|
|
8668
8668
|
ids.push($(val).attr('xu-ui-id'));
|
|
8669
8669
|
}
|
|
8670
8670
|
});
|