Skip to content

Instantly share code, notes, and snippets.

@natflow
Created July 20, 2012 17:16
Show Gist options
  • Save natflow/3151975 to your computer and use it in GitHub Desktop.
Save natflow/3151975 to your computer and use it in GitHub Desktop.
deferred timeout
function deferredTimout (timeout) {
return $.Deferred(function () {
setTimeout(this.resolve, timeout);
})
.promise();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment