application.js 183 B

123456789
  1. if (typeof jQuery !== 'undefined') {
  2. (function($) {
  3. $('#spinner').ajaxStart(function() {
  4. $(this).fadeIn();
  5. }).ajaxStop(function() {
  6. $(this).fadeOut();
  7. });
  8. })(jQuery);
  9. }