PageRenderTime 25ms CodeModel.GetById 15ms RepoModel.GetById 1ms app.codeStats 0ms

/web-app/js/application.js

http://github.com/jdmr/mateo
JavaScript | 9 lines | 9 code | 0 blank | 0 comment | 1 complexity | d493f637091af9f378f4fdfb4c4c6d43 MD5 | raw file
  1. if (typeof jQuery !== 'undefined') {
  2. (function($) {
  3. $('#spinner').ajaxStart(function() {
  4. $(this).fadeIn();
  5. }).ajaxStop(function() {
  6. $(this).fadeOut();
  7. });
  8. })(jQuery);
  9. }