Skip to content

Instantly share code, notes, and snippets.

View ilian6806's full-sized avatar

Ilian Iliev ilian6806

View GitHub Profile
;(function (callback) {
function retry(isDone, next) {
var current_trial = 0, max_retry = 50, interval = 10, is_timeout = false;
var id = window.setInterval(function() {
if (isDone()) {
window.clearInterval(id);
next(is_timeout);
}