@nerdsofalltrad.es/gdpr-cookie-monster
Advanced tools
Comparing version 0.1.2 to 0.1.3
{ | ||
"name": "@nerdsofalltrad.es/gdpr-cookie-monster", | ||
"version": "0.1.2", | ||
"description": | ||
"A minimal EU-GDPR compliant cookie consent banner for websites and shops (5.6K gzipped)", | ||
"version": "0.1.3", | ||
"description": "A minimal EU-GDPR compliant cookie consent banner for websites and shops (5.6K gzipped)", | ||
"scripts": { | ||
@@ -7,0 +6,0 @@ "test": "eslint src", |
@@ -54,11 +54,12 @@ # GDPR Cookie Monster | ||
<script> | ||
window.noat = { | ||
cookieConsent: { | ||
text: 'Use your text why you are using Cookies here', | ||
privacyPolicyText: 'The title of the cookie policy link', | ||
privacyPolicyUrl: 'The URL to the cookie policy', | ||
deny: 'The deny button title', | ||
allow: 'The allow button title' | ||
} | ||
if (!window.noat) { | ||
window.noat = {}; | ||
} | ||
window.noat.cookieConsent = { | ||
text: 'Use your text why you are using Cookies here', | ||
privacyPolicyText: 'The title of the cookie policy link', | ||
privacyPolicyUrl: 'The URL to the cookie policy', | ||
denyText: 'The deny button title', | ||
allowText: 'The allow button title' | ||
}; | ||
</script> | ||
@@ -73,7 +74,9 @@ ``` | ||
<script> | ||
window.noat = { | ||
cookieConsent: { | ||
useCustomCSS: true | ||
} | ||
if (!window.noat) { | ||
window.noat = {}; | ||
} | ||
window.noat.cookieConsent = { | ||
// ... keep settings from above here | ||
useCustomCSS: true | ||
}; | ||
</script> | ||
@@ -92,2 +95,7 @@ ``` | ||
## See it live | ||
* https://nerdsofalltrad.es | ||
* https://uhrwerk.berlin | ||
## Legal Notice | ||
@@ -94,0 +102,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24135
105