Skip to content

Commit

Permalink
code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Nov 18, 2014
1 parent 51c7f53 commit 76ef2cb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion imp/js/dimpbase.js
Original file line number Diff line number Diff line change
Expand Up @@ -2219,7 +2219,10 @@ var DimpBase = {
}
// Run in anonymous function, or else PeriodicalExecuter passes
// in itself as first ('force') parameter to poll().
this.pollPE = new PeriodicalExecuter(function() { this.poll(); }.bind(this), DimpCore.conf.refresh_time);
this.pollPE = new PeriodicalExecuter(
function() { this.poll(false); }.bind(this),
DimpCore.conf.refresh_time
);
}
},

Expand Down

0 comments on commit 76ef2cb

Please sign in to comment.