gdpr-consent
Version:
GDPR banner to comply with the European cookie law. Inspired by tarteaucitronjs.
23 lines (22 loc) • 794 B
JavaScript
import { addScript } from "../utils/index.js";
export const subscribewithgoogle = ((user) => {
return {
key: "subscribewithgoogle",
type: "other",
name: "Subscribe with Google",
uri: "https://policies.google.com/technologies/cookies#types-of-cookies",
needConsent: true,
lazyConsent: true,
cookies: [],
js: function () {
if (typeof user.subscribewithgoogleMore === "function") {
addScript("https://news.google.com/swg/js/v1/swg.js", { "subscriptions-control": "manual" }, function () {
user.subscribewithgoogleMore();
});
}
else {
addScript("https://news.google.com/swg/js/v1/swg.js");
}
},
};
});