bigbluebutton-Github/services/bbb-web-api/web-app/js/application.js
2013-09-18 18:41:02 +00:00

10 lines
183 B
JavaScript

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