4 lines
166 B
JavaScript
4 lines
166 B
JavaScript
|
window.addEventListener('load', () => {
|
||
|
document.querySelector('.isLoading').classList.remove('isLoading');
|
||
|
document.getElementById('preloader').remove();
|
||
|
});
|