Skip to content

Instantly share code, notes, and snippets.

@Schubidu
Created March 15, 2012 07:32
Show Gist options
  • Save Schubidu/2042737 to your computer and use it in GitHub Desktop.
Save Schubidu/2042737 to your computer and use it in GitHub Desktop.
jQuery deferred timeout
jQuery.Deferred.timeout = function (duration) {
var dfd = $.Deferred();
setTimeout(function () {
dfd.resolve();
}, duration);
return dfd.promise();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment