Skip to content

Commit

Permalink
🤖 GITHUB ACTIONS format_prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
amontenegro committed Sep 7, 2023
1 parent 512ef90 commit efc1ff7
Showing 1 changed file with 48 additions and 16 deletions.
64 changes: 48 additions & 16 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,58 @@
/>
<meta name="theme-color" content="#1976d2" />
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
const EU = ['AT','BE','BG','HR','CY','CZ','DK','EE','FI','FR','DE','GR','HU','IE','IT','LV','LT','LU','MT','NL','PL','PT','RO','SK','SI','ES','SE','IS','LI','NO'];
const countries = EU.concat('GB', 'BR', 'US-CA');
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
const EU = [
'AT',
'BE',
'BG',
'HR',
'CY',
'CZ',
'DK',
'EE',
'FI',
'FR',
'DE',
'GR',
'HU',
'IE',
'IT',
'LV',
'LT',
'LU',
'MT',
'NL',
'PL',
'PT',
'RO',
'SK',
'SI',
'ES',
'SE',
'IS',
'LI',
'NO',
]
const countries = EU.concat('GB', 'BR', 'US-CA')

gtag('consent', 'default', {
'analytics_storage': 'denied',
'ad_storage': 'denied',
'functionality_storage': 'denied',
'region': countries,
'wait_for_update': 500
});
analytics_storage: 'denied',
ad_storage: 'denied',
functionality_storage: 'denied',
region: countries,
wait_for_update: 500,
})

gtag('consent', 'default', {
'analytics_storage': 'granted',
'ad_storage': 'granted',
'functionality_storage': 'granted',
'wait_for_update': 500
});

analytics_storage: 'granted',
ad_storage: 'granted',
functionality_storage: 'granted',
wait_for_update: 500,
})
</script>
<script
type="text/javascript"
Expand Down

0 comments on commit efc1ff7

Please sign in to comment.