Skip to content

Instantly share code, notes, and snippets.

@postazure
Created January 14, 2015 17:26
Show Gist options
  • Save postazure/6877cf940b3c2c7270e1 to your computer and use it in GitHub Desktop.
Save postazure/6877cf940b3c2c7270e1 to your computer and use it in GitHub Desktop.
Repeating Pop-up | sleep();
function sleep(milliseconds){
var start = new Date().getTime();
for (var i = 0; i < 1e7; i++){
if ((new Date().getTime() - start) > milliseconds){
break;
};
};
};
while (true){
running = confirm("woof");
if (running === false){
break;
};
sleep(3000);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment