@innovastudio/contentbuilder 1.4.145 → 1.4.146
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/package.json
CHANGED
|
@@ -10879,10 +10879,12 @@ class HtmlUtil {
|
|
|
10879
10879
|
dom$k.removeElements(tmp.querySelectorAll('.row-add-initial'));
|
|
10880
10880
|
|
|
10881
10881
|
//Extra cleaning
|
|
10882
|
-
|
|
10883
|
-
|
|
10884
|
-
|
|
10885
|
-
|
|
10882
|
+
if (this.builder.cleanAOS) {
|
|
10883
|
+
elms = tmp.querySelectorAll('.aos-init');
|
|
10884
|
+
dom$k.removeClasses(elms, 'aos-init');
|
|
10885
|
+
elms = tmp.querySelectorAll('.aos-animate');
|
|
10886
|
+
dom$k.removeClasses(elms, 'aos-animate');
|
|
10887
|
+
}
|
|
10886
10888
|
elms = tmp.querySelectorAll('.skrollable');
|
|
10887
10889
|
dom$k.removeClasses(elms, 'skrollable');
|
|
10888
10890
|
elms = tmp.querySelectorAll('.skrollable-after');
|
|
@@ -75630,6 +75632,7 @@ class ContentBuilder {
|
|
|
75630
75632
|
customval: '',
|
|
75631
75633
|
moduleConfig: [],
|
|
75632
75634
|
elementAnimate: false,
|
|
75635
|
+
cleanAOS: false,
|
|
75633
75636
|
framework: '',
|
|
75634
75637
|
cellFormat: '',
|
|
75635
75638
|
rowFormat: '',
|