Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.                 Logger.log("broadcast refresher set: " + 1);
  2.                 window.setInterval(bind(function() {
  3.                     if (!this.broadcastListBtn.isSelected()) {
  4.                         Logger.log("broadcastlistpanel refreshed: " + 1);
  5.                         this.broadcastListPanel.thumbList._refreshProvider();
  6.                     }
  7.                 }, this), 5000)
  8.  
  9.                 window.setTimeout(bind(function() {
  10.                     Logger.log("upcoming refresher set: " + 1);
  11.                     window.setInterval(bind(function() {
  12.                         if (!this.upcomingListBtn.isSelected()) {
  13.                             Logger.log("upcominglistpanel refreshed: " + 1);
  14.                             this.upcomingListPanel.thumbList._refreshProvider();
  15.                         }
  16.                     }, this), 5000)
  17.                 }, this), 10000)
  18.  
  19.                 window.setTimeout(bind(function() {
  20.                     Logger.log("recorded refresher set: " + 1);
  21.                     window.setInterval(bind(function() {
  22.                         if (!this.recordedListBtn.isSelected()) {
  23.                             Logger.log("recordedlistpanel refreshed: " + 1);
  24.                             this.recordedListPanel.thumbList._refreshProvider();
  25.                         }
  26.                     }, this), 5000)
  27.                 }, this), 15000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement