bigbluebutton-Github/bigbluebutton-web/web-app/js/application.js

10 lines
183 B
JavaScript
Raw Normal View History

if (typeof jQuery !== 'undefined') {
(function($) {
$('#spinner').ajaxStart(function() {
$(this).fadeIn();
}).ajaxStop(function() {
$(this).fadeOut();
});
})(jQuery);
}