qa-prevention-wlaq-vue/static/bi/js/pre-loader.js

11 lines
232 B
JavaScript
Raw Normal View History

2024-11-19 14:13:47 +08:00
$(document).ready(function() {
// remove pre-loader start
setTimeout(function() {
$('.loader-bg').fadeOut('slow', function() {
$(this).remove();
});
}, 400);
// remove pre-loader end
})