Merge branch 'master' into master
This commit is contained in:
commit
4e849e89cc
|
|
@ -492,7 +492,7 @@ div#tarteaucitronServices {
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
z-index: 2147483645;
|
z-index: 2147483645;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 10px;
|
padding: 10px 0 10px 0;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1372,6 +1372,32 @@ tarteaucitron.services.googletagmanager = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// google tag manager multiple
|
||||||
|
tarteaucitron.services.multiplegoogletagmanager = {
|
||||||
|
"key": "multiplegoogletagmanager",
|
||||||
|
"type": "api",
|
||||||
|
"name": "Google Tag Manager",
|
||||||
|
"uri": "https://adssettings.google.com/",
|
||||||
|
"needConsent": true,
|
||||||
|
"cookies": ['_ga', '_gat', '__utma', '__utmb', '__utmc', '__utmt', '__utmz', '__gads', '_drt_', 'FLC', 'exchange_uid', 'id', 'fc', 'rrs', 'rds', 'rv', 'uid', 'UIDR', 'UID', 'clid', 'ipinfo', 'acs'],
|
||||||
|
"js": function () {
|
||||||
|
"use strict";
|
||||||
|
if (tarteaucitron.user.multiplegoogletagmanagerId === undefined) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
window.dataLayer = window.dataLayer || [];
|
||||||
|
window.dataLayer.push({
|
||||||
|
'gtm.start': new Date().getTime(),
|
||||||
|
event: 'gtm.js'
|
||||||
|
});
|
||||||
|
|
||||||
|
tarteaucitron.user.multiplegoogletagmanagerId.forEach(function (id) {
|
||||||
|
tarteaucitron.addScript('https://www.googletagmanager.com/gtm.js?id=' + id);
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
// google webfonts
|
// google webfonts
|
||||||
tarteaucitron.services.googlefonts = {
|
tarteaucitron.services.googlefonts = {
|
||||||
"key": "googlefonts",
|
"key": "googlefonts",
|
||||||
|
|
@ -3027,7 +3053,7 @@ tarteaucitron.services.getquanty = {
|
||||||
"name": "GetQuanty",
|
"name": "GetQuanty",
|
||||||
"uri": "https://www.getquanty.com/mentions-legales/",
|
"uri": "https://www.getquanty.com/mentions-legales/",
|
||||||
"needConsent": true,
|
"needConsent": true,
|
||||||
"cookies": [],
|
"cookies": ['_first_pageview', 'eqy_sessionid', 'eqy_siteid','cluid','eqy_company', 'cluid', 'gq_utm', '_jsuid'],
|
||||||
"js": function () {
|
"js": function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
if (tarteaucitron.user.getguanty === undefined) {
|
if (tarteaucitron.user.getguanty === undefined) {
|
||||||
|
|
@ -3133,7 +3159,6 @@ tarteaucitron.services.adobeanalytics = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
// woopra customer journey analytics
|
// woopra customer journey analytics
|
||||||
tarteaucitron.services.woopra = {
|
tarteaucitron.services.woopra = {
|
||||||
'key': 'woopra',
|
'key': 'woopra',
|
||||||
|
|
@ -3157,3 +3182,4 @@ tarteaucitron.services.woopra = {
|
||||||
woopra.track();
|
woopra.track();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue