You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 regels
275 B

  1. function set_loading() {
  2. pending_req++;
  3. $('#spinner').css('visibility', 'visible');
  4. $('body').css('cursor', 'progress');
  5. }
  6. function hide_loading() {
  7. pending_req--;
  8. if(!pending_req){
  9. $('body').css('cursor', 'default');
  10. $('#spinner').css('visibility', 'hidden');
  11. }
  12. }