Skip to content

Instantly share code, notes, and snippets.

@visb
Created April 12, 2014 08:58
Show Gist options
  • Select an option

  • Save visb/10525701 to your computer and use it in GitHub Desktop.

Select an option

Save visb/10525701 to your computer and use it in GitHub Desktop.
function minutesEqualTo(minutes, action) {
var date = new Date,
sleep = 1000 * 60;
if (date.getMinutes() == minutes) {
action.call();
sleep = 1000 * 60 * 60;
}
window.setTimeout(minutesEqualTo.bind(window, minutes, action), sleep);
}
minutesEqualTo(12, function(){
console.log('ok');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment