/web-app/js/application.js
JavaScript | 9 lines | 9 code | 0 blank | 0 comment | 1 complexity | d493f637091af9f378f4fdfb4c4c6d43 MD5 | raw file
- if (typeof jQuery !== 'undefined') {
- (function($) {
- $('#spinner').ajaxStart(function() {
- $(this).fadeIn();
- }).ajaxStop(function() {
- $(this).fadeOut();
- });
- })(jQuery);
- }