source: trunk/web-app/js/application.js @ 825

Last change on this file since 825 was 825, checked in by gav, 13 years ago

Add jQuery AJAX util js and css, part 2.

File size: 571 bytes
Line 
1var Ajax;
2if (Ajax && (Ajax != null)) {
3    Ajax.Responders.register({
4    onCreate: function() {
5        if($('spinner') && Ajax.activeRequestCount>0)
6        Effect.Appear('spinner',{duration:0.5,queue:'end'});
7    },
8    onComplete: function() {
9        if($('spinner') && Ajax.activeRequestCount==0)
10        Effect.Fade('spinner',{duration:0.5,queue:'end'});
11    }
12    });
13}
14
15// jQuery AJAX utils.
16
17function loadingIndication() {
18    return jQuery('#jQueryAjaxLoading').clone();
19}
20
21function errorIndication() {
22    return jQuery('#jQueryAjaxDefaultError').clone();
23}
Note: See TracBrowser for help on using the repository browser.