gdpr 1.0.8 → 1.0.9
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.
- checksums.yaml +4 -4
- data/app/views/gdpr/_cookie_consent.html.erb +1 -2
- data/lib/gdpr/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e559dc603214ff6a3264ecf2a2004c5669f8c9289e76ffe79d561a4560033134
|
|
4
|
+
data.tar.gz: 8274e198b852bce49b643b84da544e014c0d219e18379119cc539ac5b74c6705
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7f5543c68fb33722fa3769fe7c46135a014aa20499476e94082cafb67239498edd20b9df165e2046037e0fb540f8fc2a68c70735507371c334ec8e1c0609faf6
|
|
7
|
+
data.tar.gz: 68883b7624564e5d4c263c5986b5234e02bb04f5f84e270fa70e2f72a3a116d45e260496130634eff0399492402d041526ad5ba7149d37d502efd56478ac1dd3
|
|
@@ -2,11 +2,10 @@
|
|
|
2
2
|
<div class="gdpr__cookie_consent js-gdpr__cookie_consent">
|
|
3
3
|
<div class="gdpr__cookie_consent__text">
|
|
4
4
|
<%= t('gdpr.cookie_consent.text') %>
|
|
5
|
-
<br />
|
|
6
5
|
<%= t('gdpr.cookie_consent.learn_more_html', link: t('gdpr.privacy_policy')) %>
|
|
7
6
|
</div>
|
|
8
7
|
<div class="gdpr__cookie_consent__buttons">
|
|
9
|
-
<button class="gdpr__cookie_consent__buttons__ok js-gdpr__cookie_consent__buttons__ok"> <%= t('gdpr.cookie_consent.button') %></button>
|
|
8
|
+
<button class="gdpr__cookie_consent__buttons__ok js-gdpr__cookie_consent__buttons__ok btn btn-primary btn-xs"> <%= t('gdpr.cookie_consent.button') %></button>
|
|
10
9
|
</div>
|
|
11
10
|
</div>
|
|
12
11
|
<% end %>
|
data/lib/gdpr/version.rb
CHANGED