mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
7 lines
195 B
JavaScript
7 lines
195 B
JavaScript
function showLoader() {
|
|
$('body').append('<div class="loading-cart"><div class="lds-ripple"><div></div><div></div></div></div>');
|
|
}
|
|
|
|
function hideLoader() {
|
|
$('.loading-cart').remove();
|
|
} |