@innovastudio/contentbuilder 1.3.40 → 1.3.41
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
|
@@ -15294,6 +15294,14 @@ class HtmlUtil {
|
|
|
15294
15294
|
Array.prototype.forEach.call(elms, elm => {
|
|
15295
15295
|
dom$h.removeClass(elm, 'section-active');
|
|
15296
15296
|
});
|
|
15297
|
+
elms = tmp.querySelectorAll('.section-select');
|
|
15298
|
+
Array.prototype.forEach.call(elms, elm => {
|
|
15299
|
+
dom$h.removeClass(elm, 'section-select');
|
|
15300
|
+
});
|
|
15301
|
+
elms = tmp.querySelectorAll('.box-select');
|
|
15302
|
+
Array.prototype.forEach.call(elms, elm => {
|
|
15303
|
+
dom$h.removeClass(elm, 'box-select');
|
|
15304
|
+
});
|
|
15297
15305
|
elms = tmp.querySelectorAll('.is-section-tool');
|
|
15298
15306
|
dom$h.removeElements(elms);
|
|
15299
15307
|
elms = tmp.querySelectorAll('.is-box-tool');
|