-
Notifications
You must be signed in to change notification settings - Fork 27.4k
revert: fix($animateCss): remove animation end event listeners on close #13504
revert: fix($animateCss): remove animation end event listeners on close #13504
Conversation
Previously, the animate queue would only detect pinned elements when they were the same element as the to-be-animated element. Related angular#12617 Closes angular#13466
This reverts commit c98e08f. This commit was identified as incompatible with ng-material at Google and is causing broken builds there. Proper fix to be investigated once the immediate regression is addressed.
do not merge anything into 1.4.x branch including this PR. |
I'll merge this in when we are ready. @petebacondarwin, @Narretz, @gkalpak please cherry pick the test fix to master and verify why the lint check didn't catch ddescribe during CI. |
Looking into the |
(Indeed, it was merged without For some reason, I can't seem to find any travis jobs for the commits between 20604e7 and 8f0b482 (on master) and between 33cc75e and 1329e0f (on v1.4.x). If I am not missing something, this means that there was no "CI" for the following commits: master: 6858caf, bc41ad8, 6428ed5 The 2 builds on v1.4.x after the missed/skipped commits should have caught the Maybe it is related to this Travis issue: https://www.traviscistatus.com/incidents/b3xhcrr7g46d |
@IgorMinar, by "please cherry pick the test fix to master" I assume you only meant the |
@@ -749,11 +747,6 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { | |||
options.onDone(); | |||
} | |||
|
|||
// Remove the transitionend / animationend listener(s) | |||
if (events) { | |||
element.off(events.join(' '), onAnimationProgress); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if it is related to the "breakage", but this line can cause trouble if events
is an empty array. This is because of how jqLiteOn
and jqLiteOff
work (I didn't look into jQuery's implementation).
With an empty events
array, we will be calling element.on('', onAnimationProgress)
and element.off('', onAnimationProgress)
. Due to how .on()
and .off()
are implemented, these two calls will result in:
.on(...)
: Register a listener for the''
(empty string) event (won't ever fire - but that's fine)..off(...)
: Deregister all listeners, because:.off('', ...)
<==>.off()
.
jqLiteOff
only check if theevent
is truthy (and''
isn't) and if not, it thinks it is a no-argument call and deregisters all listeners from the element.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If that is indeed the issue, I think it makes more sense to fix jqLiteOff
instead of fixing it here.
BTW, prior to v1.3.0-beta.19
, jqLiteOff
did the right thing (using isUndefined(type)
instead of !type
), until someone "optimized" it ™ 😛
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DISCLAIMER: I haven't investigated if events
can be empty (or if it will always have atleast one entry), but there's a good chance it can, since someone already noticed it: #13502.
Good work @gkalpak . |
Thanks @gkalpak. If jquery also removes all events when argument is '' then there's no use in fixing it in jqlite. I'll check. |
Yes, we needs to verify what jQuery does (but I would be very surprised if they did the same as |
The results are in ... jquery doesn't remove any events if .off is called with empty string. So we need to fix jqlite, I'm gonna do that now. We can of course also make the code in animateCss more explicit. Wdyt? |
@Narretz thanks |
Scratch that, actually, jQuery also removes all events when called with '', so the fix must go directly into animateCss |
ok. this is good to be merged now, but there are some commits in the v1.4.x branch that might need to be reverted before we land this PR. commits to revert (in this order): 194ade2, 1329e0f. I talked to @petebacondarwin about this and either him or I will do this cleanup next week. We are not under time pressure to do this as long as v1.4.x remains frozen. |
@IgorMinar I have a fix for the animation issue, so it doesn't necessarily have to be reverted. Or is there another reason why we can't just fix it? |
@IgorMinar, are you sure 194ade2 is the one that needs to be reverted ? |
yes - the two commits listed are in v1.4.x branch but not in google3. g3 Do not touch v1.4.x - pete or me will do the cleanup next week. On Fri, Dec 11, 2015 at 10:45 AM Georgios Kalpakas notifications@github.com
|
landed as 194ade2...bab3069 (I had to force push to get g3 and github in sync) |
We found a Contributor License Agreement for you (the sender of this pull request) and all commit authors, but as best as we can tell these commits were authored by someone else. If that's the case, please add them to this pull request and have them confirm that they're okay with these commits being contributed to Google. If we're mistaken and you did author these commits, just reply here to confirm. |
@IgorMinar, @petebacondarwin, is |
This reverts commit c98e08f.
This commit was identified as incompatible with ng-material at Google
and is causing broken builds there. Proper fix to be investigated once
the immediate regression is addressed.