Skip to content

Instantly share code, notes, and snippets.

@FiNGAHOLiC
Created October 31, 2012 12:35
Show Gist options
  • Select an option

  • Save FiNGAHOLiC/3986821 to your computer and use it in GitHub Desktop.

Select an option

Save FiNGAHOLiC/3986821 to your computer and use it in GitHub Desktop.
setTimeout wrapper
// http://www.intridea.com/blog/2011/2/8/fun-with-jquery-deferred
$.timeout = function(time){
return $.Deferred(function(dfd){
setTimeout(dfd.resolve, time);
}).promise();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment