isdata-customer-sdk 0.2.7 → 0.2.8
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/dist/index.common.js
CHANGED
|
@@ -33598,13 +33598,13 @@ function unProcessElement(element) {
|
|
|
33598
33598
|
if (element && element.nodeType !== 1) {
|
|
33599
33599
|
return;
|
|
33600
33600
|
}
|
|
33601
|
-
const hasChildren = hasChildElements(element);
|
|
33602
|
-
if (hasChildren) {
|
|
33603
|
-
|
|
33604
|
-
|
|
33605
|
-
|
|
33606
|
-
|
|
33607
|
-
}
|
|
33601
|
+
// const hasChildren = hasChildElements(element);
|
|
33602
|
+
// if (hasChildren) {
|
|
33603
|
+
// let children = element.children;
|
|
33604
|
+
// for (let i = 0; i < children.length; i++) {
|
|
33605
|
+
// unProcessElement(children[i]);
|
|
33606
|
+
// }
|
|
33607
|
+
// }
|
|
33608
33608
|
const localDomID = element.getAttribute("localDomID");
|
|
33609
33609
|
if (localDomID && window.i18nElementsMap.has(localDomID)) {
|
|
33610
33610
|
window.i18nElementsMap.delete(localDomID);
|