@innovastudio/contentbox 1.6.19 → 1.6.20
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
@@ -103821,10 +103821,16 @@ class AnimateScroll {
|
|
103821
103821
|
|
103822
103822
|
</div>
|
103823
103823
|
`;
|
103824
|
+
let n = 0;
|
103824
103825
|
|
103825
103826
|
while (html.includes('{id}')) {
|
103826
103827
|
const uniqueId = this.builder.makeId();
|
103827
103828
|
html = html.replace('{id}', uniqueId);
|
103829
|
+
n++;
|
103830
|
+
|
103831
|
+
if (n > 70) {
|
103832
|
+
break;
|
103833
|
+
}
|
103828
103834
|
}
|
103829
103835
|
|
103830
103836
|
dom$2.appendHtml(builderStuff, html);
|
@@ -108060,10 +108066,16 @@ class Timeline {
|
|
108060
108066
|
</div>
|
108061
108067
|
</div>
|
108062
108068
|
`;
|
108069
|
+
let n = 0;
|
108063
108070
|
|
108064
108071
|
while (html.includes('{id}')) {
|
108065
108072
|
const uniqueId = this.builder.makeId();
|
108066
108073
|
html = html.replace('{id}', uniqueId);
|
108074
|
+
n++;
|
108075
|
+
|
108076
|
+
if (n > 150) {
|
108077
|
+
break;
|
108078
|
+
}
|
108067
108079
|
}
|
108068
108080
|
|
108069
108081
|
dom$1.appendHtml(builderStuff, html);
|