UNPKG

gdpr-consent

Version:

GDPR banner to comply with the European cookie law. Inspired by tarteaucitronjs.

12 lines (11 loc) 365 B
import { closePanel, openPanel } from "./user-interface.js"; export function keydownEvent(gdprConsentState, evt) { if (evt.code === "Escape") { closePanel(gdprConsentState); } } export function hashchangeEvent(gdprConsentState) { if (document.location.hash === gdprConsentState.parameters.hashtag) { openPanel(gdprConsentState); } }