Daniel Kantor
commited on
Commit
·
7640e35
1
Parent(s):
e1059f2
fix consent config according to docs
Browse files
frontend/public/index.html
CHANGED
@@ -60,13 +60,9 @@
|
|
60 |
</style>
|
61 |
|
62 |
<!-- Google tag (gtag.js) -->
|
63 |
-
<script async src="https://www.googletagmanager.com/gtag/js?id=G-P5GTRES91P"></script>
|
64 |
<script>
|
65 |
window.dataLayer = window.dataLayer || [];
|
66 |
function gtag() {dataLayer.push(arguments);}
|
67 |
-
gtag('js', new Date());
|
68 |
-
|
69 |
-
gtag('config', 'G-P5GTRES91P');
|
70 |
gtag('consent', 'default', {
|
71 |
'ad_storage': 'denied',
|
72 |
'ad_user_data': 'denied',
|
@@ -74,6 +70,14 @@
|
|
74 |
'analytics_storage': 'denied'
|
75 |
});
|
76 |
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
</head>
|
78 |
|
79 |
<body>
|
|
|
60 |
</style>
|
61 |
|
62 |
<!-- Google tag (gtag.js) -->
|
|
|
63 |
<script>
|
64 |
window.dataLayer = window.dataLayer || [];
|
65 |
function gtag() {dataLayer.push(arguments);}
|
|
|
|
|
|
|
66 |
gtag('consent', 'default', {
|
67 |
'ad_storage': 'denied',
|
68 |
'ad_user_data': 'denied',
|
|
|
70 |
'analytics_storage': 'denied'
|
71 |
});
|
72 |
</script>
|
73 |
+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-P5GTRES91P"></script>
|
74 |
+
<script>
|
75 |
+
window.dataLayer = window.dataLayer || [];
|
76 |
+
function gtag() {dataLayer.push(arguments);}
|
77 |
+
gtag('js', new Date());
|
78 |
+
|
79 |
+
gtag('config', 'G-P5GTRES91P');
|
80 |
+
</script>
|
81 |
</head>
|
82 |
|
83 |
<body>
|