10 lines
183 B
JavaScript
Executable File
10 lines
183 B
JavaScript
Executable File
if (typeof jQuery !== 'undefined') {
|
|
(function($) {
|
|
$('#spinner').ajaxStart(function() {
|
|
$(this).fadeIn();
|
|
}).ajaxStop(function() {
|
|
$(this).fadeOut();
|
|
});
|
|
})(jQuery);
|
|
}
|