#14623 closed bug (fixed)
$.is(':animated') return false from within inital step events
Reported by: | Owned by: | dmethvin | |
---|---|---|---|
Priority: | low | Milestone: | 1.11/2.1 |
Component: | effects | Version: | 1.10.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Consider the following:
element.animate(
{marginTop: contentMarginTop, marginBottom: contentMarginBottom}, {
duration: 1000, easing: 'easeInOutSine', step: function () {
console.log(contentPlaceholderElement.is(':animated')); update(false);
}
});
I'd expect element to have animated state when animation is performing steps.
Change History (4)
comment:1 Changed 9 years ago by
comment:2 Changed 9 years ago by
Owner: | set to dmethvin |
---|---|
Status: | new → assigned |
comment:3 Changed 9 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Effects: First step() call should match :animated selector
Fixes #14623 Closes gh-1473
Changeset: 085814474e4a854d533b5ccbaef24c090081e0c4
comment:4 Changed 9 years ago by
Component: | unfiled → effects |
---|---|
Milestone: | None → 1.11/2.1 |
Priority: | undecided → low |
Note: See
TracTickets for help on using
tickets.
That's true: http://jsfiddle.net/Pyr29/