Skip to content

Instantly share code, notes, and snippets.

@netsuite
Created April 24, 2013 01:54
Show Gist options
  • Save netsuite/5449002 to your computer and use it in GitHub Desktop.
Save netsuite/5449002 to your computer and use it in GitHub Desktop.
js: deferred wait
/**
* Use: $.wait(1000).then( goMakeTea );
**/
$.wait = function(duration) {
return $.Deferred(function(def){
setTimeout(def.resolve, duration);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment