@xuda.io/runtime-bundle 1.0.426 → 1.0.428
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
|
@@ -8638,6 +8638,9 @@ func.UI.utils.get_panels_wrapper_from_dom = async function (SESSION_ID, $xu_embe
|
|
|
8638
8638
|
var $div = $(elem_val);
|
|
8639
8639
|
|
|
8640
8640
|
const panelXuAttributes = $div?.data().xuPanelWrapper?.panelXuAttributes;
|
|
8641
|
+
|
|
8642
|
+
if (!panelXuAttributes) continue; // skip if no longer in dom
|
|
8643
|
+
|
|
8641
8644
|
let prog_id = panelXuAttributes?.program;
|
|
8642
8645
|
const exp = panelXuAttributes?.['xu-exp:program'];
|
|
8643
8646
|
if (exp) {
|
|
@@ -8639,6 +8639,9 @@ func.UI.utils.get_panels_wrapper_from_dom = async function (SESSION_ID, $xu_embe
|
|
|
8639
8639
|
var $div = $(elem_val);
|
|
8640
8640
|
|
|
8641
8641
|
const panelXuAttributes = $div?.data().xuPanelWrapper?.panelXuAttributes;
|
|
8642
|
+
|
|
8643
|
+
if (!panelXuAttributes) continue; // skip if no longer in dom
|
|
8644
|
+
|
|
8642
8645
|
let prog_id = panelXuAttributes?.program;
|
|
8643
8646
|
const exp = panelXuAttributes?.['xu-exp:program'];
|
|
8644
8647
|
if (exp) {
|