cc-docs/assets/js/alert-init.js

5 lines
167 B
JavaScript
Raw Normal View History

2023-07-04 16:33:06 +02:00
Object.keys(localStorage).forEach(function(key) {
if (/^global-alert-/.test(key)) {
document.documentElement.setAttribute('data-global-alert', 'closed');
}
});