|
|
@ -5,12 +5,12 @@ import TinyConsentButton from './src/TinyConsentButton.riot'; |
|
|
|
riot.register('tiny-consent', TinyConsent); |
|
|
|
riot.register('tiny-consent-button', TinyConsentButton); |
|
|
|
|
|
|
|
const consent = { |
|
|
|
const data = { |
|
|
|
cookies: [{ |
|
|
|
title: 'Matomo', |
|
|
|
name: 'matamo_', |
|
|
|
id: 'matamo', |
|
|
|
content: 'Analyse des Benutzerverhaltens, damit helfen Sie uns diese Seite zu verbessern.', |
|
|
|
content: '', |
|
|
|
handleAgree: function() { |
|
|
|
console.log('agree'); |
|
|
|
}, |
|
|
@ -18,21 +18,12 @@ const consent = { |
|
|
|
console.log('reject'); |
|
|
|
} |
|
|
|
},{ |
|
|
|
id: 'wordpress2', |
|
|
|
name: 'wordpress2_', |
|
|
|
content: 'Wordpress und WooCommerce nutzen Session, diese werden zum einen für den Login genutzt, aber auch für den Warenkorb.', |
|
|
|
essential: true |
|
|
|
},{ |
|
|
|
id: 'wordpress12', |
|
|
|
name: 'wordpress12_', |
|
|
|
content: 'Wordpress und WooCommerce nutzen Session, diese werden zum einen für den Login genutzt, aber auch für den Warenkorb.', |
|
|
|
essential: true |
|
|
|
},{ |
|
|
|
id: 'wordpress3', |
|
|
|
name: 'wordpress3_', |
|
|
|
id: 'wordpress', |
|
|
|
name: 'wordpress_', |
|
|
|
content: 'Wordpress und WooCommerce nutzen Session, diese werden zum einen für den Login genutzt, aber auch für den Warenkorb.', |
|
|
|
essential: true |
|
|
|
}] |
|
|
|
}; |
|
|
|
riot.mount('tiny-consent', consent); |
|
|
|
|
|
|
|
riot.mount('tiny-consent', data); |
|
|
|
riot.mount('tiny-consent-button'); |