Skip to content

Instantly share code, notes, and snippets.

@KlonD90
Created November 27, 2014 10:29
Show Gist options
  • Save KlonD90/2d9558fd072c6252018b to your computer and use it in GitHub Desktop.
Save KlonD90/2d9558fd072c6252018b to your computer and use it in GitHub Desktop.
var proxyStatisticGetter = function(){
if (saveStat == null){
saveStat = statistic.getTop();
//flush data every 5 sec
setTimeout(function(){
saveStat = null;
},5000);
}
return saveStat;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment