aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontpage/assets/js/alert-init.js
blob: af3ac325431ef5ffbed8ce3aafaf96816f6dd7c4 (plain) (blame)
1
2
3
4
5
Object.keys(localStorage).forEach(function(key) {
  if (/^global-alert-/.test(key)) {
    document.documentElement.setAttribute('data-global-alert', 'closed');
  }
});