andrew4582

loadState

Feb 5th, 2012
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function loadState() {
  2.         this.loading = false,
  3.         this.loadIntervalId = 0,
  4.  
  5.         this.setDisabled = function (){
  6.             this.loading = false;
  7.             if(this.loadIntervalId > 0)
  8.                 clearInterval(this.loadIntervalId);
  9.             this.loadIntervalId = 0;
  10.         },
  11.        
  12.         this.setLoading = function (){
  13.             this.loading = true;
  14.         }
  15.     };
  16.    
  17.     var g_loadState = new loadState();
Advertisement
Add Comment
Please, Sign In to add comment