Add Shareaholic service
This commit is contained in:
parent
c67483ef17
commit
3777254fba
|
|
@ -25,6 +25,7 @@ Bonus:
|
||||||
- Google+
|
- Google+
|
||||||
- Linkedin
|
- Linkedin
|
||||||
- Pinterest
|
- Pinterest
|
||||||
|
- Shareaholic
|
||||||
- Twitter
|
- Twitter
|
||||||
|
|
||||||
## Visitors outside the EU
|
## Visitors outside the EU
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,31 @@
|
||||||
/*global tarteaucitron, ga*/
|
/*global tarteaucitron, ga, Shareaholic*/
|
||||||
|
|
||||||
|
// shareaholic
|
||||||
|
tarteaucitron.services.shareaholic = {
|
||||||
|
"key": "shareaholic",
|
||||||
|
"type": "social",
|
||||||
|
"name": "Shareaholic",
|
||||||
|
"uri": "https://shareaholic.com/privacy/choices",
|
||||||
|
"needConsent": true,
|
||||||
|
"js": function () {
|
||||||
|
"use strict";
|
||||||
|
if (tarteaucitron.user.shareaholicSiteId === undefined) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
tarteaucitron.addScript('//dsms0mj1bbhn4.cloudfront.net/assets/pub/shareaholic.js', '', function () {
|
||||||
|
try {
|
||||||
|
Shareaholic.init(tarteaucitron.user.shareaholicSiteId);
|
||||||
|
} catch (e) {}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
"lang": {
|
||||||
|
"en": "Shareaholic use cookie and tracking technologies to provide its services.<br/><br/><em>Shareaholic provide a policy about the use of tracking technologies and cookies.</em>",
|
||||||
|
"fr": "Shareaholic utilise des cookies et des technologies de suivi afin de fournir ses services.<br/><br/><em>Shareaholic met à disposition une politique sur l'utilisation de ses systèmes de suivi et l'utilisation des cookies.</em>",
|
||||||
|
"de": "",
|
||||||
|
"es": "",
|
||||||
|
"it": ""
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
// addthis
|
// addthis
|
||||||
tarteaucitron.services.addthis = {
|
tarteaucitron.services.addthis = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue