bigbluebutton-Github/bigbluebutton-web/web-app/js/application.js
2014-02-25 15:46:06 +00:00

10 lines
183 B
JavaScript
Executable File

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