We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
http://jsfiddle.net/sp6a117y/
Analogous to #1894 in both cause and solution. The new promise never sees progress at all because .done is called on it before .progress:
.done
.progress
jQuery.Deferred().resolve().pipe(function() { var dfd = jQuery.Deferred().notify( "a" ); dfd.notify( "b" ).resolve( 1 ); return dfd; }) .progress( expectsInvocationWithB );
The text was updated successfully, but these errors were encountered:
Deferred: Don't swallow progress of a resolved deferred in then
then
ec91dd7
Fixes jquerygh-2013 Ref jquerygh-2010
f6ba8c8
Fixes jquerygh-2010
Deferred: Handle remaining progress/resolve interactions
4d34dcf
Deferred: Always handle progress callbacks before done/fail
35295f1
Fixes gh-2013 Fixes gh-2010 Closes gh-2210 (cherry picked from commit 002240a)
002240a
09cf676
Fixes gh-2013 Fixes gh-2010 Closes gh-2210
gibson042
Successfully merging a pull request may close this issue.
http://jsfiddle.net/sp6a117y/
Analogous to #1894 in both cause and solution. The new promise never sees progress at all because
.done
is called on it before.progress
:The text was updated successfully, but these errors were encountered: