30 lines
611 B
JavaScript
Raw Normal View History

// On page initialization loader is already visible, so initial value is 1
let stack = 1;
export default {
show() {
if (++stack >= 0) {
2019-12-07 13:28:52 +02:00
const loader = document.getElementById('loader');
if (!loader) {
throw new Error('Can not find loader element');
}
loader.classList.add('is-active');
}
},
hide() {
if (--stack <= 0) {
stack = 0;
2019-12-07 13:28:52 +02:00
const loader = document.getElementById('loader');
if (!loader) {
throw new Error('Can not find loader element');
}
loader.classList.remove('is-active', 'is-first-launch');
}
},
};