@zerocost/sdk 0.17.0 → 0.18.0
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.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1750,7 +1750,7 @@ function showConsentUI(options) {
|
|
|
1750
1750
|
const footer = document.createElement("div");
|
|
1751
1751
|
footer.className = "zc-consent-footer";
|
|
1752
1752
|
const ppLink = document.createElement("a");
|
|
1753
|
-
ppLink.href = privacyPolicyUrl || `${zerocostBaseUrl}/
|
|
1753
|
+
ppLink.href = privacyPolicyUrl || `${zerocostBaseUrl}/privacy`;
|
|
1754
1754
|
ppLink.target = "_blank";
|
|
1755
1755
|
ppLink.rel = "noopener noreferrer";
|
|
1756
1756
|
ppLink.textContent = "Privacy Policy";
|
|
@@ -1760,7 +1760,7 @@ function showConsentUI(options) {
|
|
|
1760
1760
|
sep1.textContent = "\xB7";
|
|
1761
1761
|
footer.appendChild(sep1);
|
|
1762
1762
|
const termsLink = document.createElement("a");
|
|
1763
|
-
termsLink.href = `${zerocostBaseUrl}/
|
|
1763
|
+
termsLink.href = `${zerocostBaseUrl}/terms`;
|
|
1764
1764
|
termsLink.target = "_blank";
|
|
1765
1765
|
termsLink.rel = "noopener noreferrer";
|
|
1766
1766
|
termsLink.textContent = "Terms";
|
package/dist/index.js
CHANGED
|
@@ -1720,7 +1720,7 @@ function showConsentUI(options) {
|
|
|
1720
1720
|
const footer = document.createElement("div");
|
|
1721
1721
|
footer.className = "zc-consent-footer";
|
|
1722
1722
|
const ppLink = document.createElement("a");
|
|
1723
|
-
ppLink.href = privacyPolicyUrl || `${zerocostBaseUrl}/
|
|
1723
|
+
ppLink.href = privacyPolicyUrl || `${zerocostBaseUrl}/privacy`;
|
|
1724
1724
|
ppLink.target = "_blank";
|
|
1725
1725
|
ppLink.rel = "noopener noreferrer";
|
|
1726
1726
|
ppLink.textContent = "Privacy Policy";
|
|
@@ -1730,7 +1730,7 @@ function showConsentUI(options) {
|
|
|
1730
1730
|
sep1.textContent = "\xB7";
|
|
1731
1731
|
footer.appendChild(sep1);
|
|
1732
1732
|
const termsLink = document.createElement("a");
|
|
1733
|
-
termsLink.href = `${zerocostBaseUrl}/
|
|
1733
|
+
termsLink.href = `${zerocostBaseUrl}/terms`;
|
|
1734
1734
|
termsLink.target = "_blank";
|
|
1735
1735
|
termsLink.rel = "noopener noreferrer";
|
|
1736
1736
|
termsLink.textContent = "Terms";
|