@innovastudio/contentbuilder 1.5.6 → 1.5.7
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
@@ -1455,11 +1455,13 @@ const renderQuickAdd = builder => {
|
|
1455
1455
|
elm = quickadd.querySelector('.add-social');
|
1456
1456
|
dom.addEventListener(elm, 'click', () => {
|
1457
1457
|
const mode = quickadd.getAttribute('data-mode');
|
1458
|
-
const html =
|
1459
|
-
|
1460
|
-
<a href="https://
|
1461
|
-
<a href="
|
1462
|
-
|
1458
|
+
const html = `
|
1459
|
+
<div class="is-social text-left">
|
1460
|
+
<a href="https://twitter.com/"><i class="bi bi-twitter-x"></i></a>
|
1461
|
+
<a href="https://www.facebook.com/"><i class="bi bi-facebook"></i></a>
|
1462
|
+
<a href="https://www.instagram.com/" title=""><i class="icon bi bi-instagram"></i></a>
|
1463
|
+
</div>
|
1464
|
+
`;
|
1463
1465
|
util.addContent(html, mode);
|
1464
1466
|
});
|
1465
1467
|
elm = quickadd.querySelector('.add-map');
|