Side navigation
#14623 closed bug (fixed)
Opened December 11, 2013 01:29PM UTC
Closed January 07, 2014 09:05PM UTC
Last modified March 20, 2014 02:00AM UTC
$.is(':animated') return false from within inital step events
Reported by: | ianbytchek@gmail.com | 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.
Attachments (0)
Change History (4)
Changed December 11, 2013 02:23PM UTC by comment:1
Changed December 30, 2013 05:42PM UTC by comment:2
owner: | → dmethvin |
---|---|
status: | new → assigned |
Changed January 07, 2014 09:05PM UTC by comment:3
resolution: | → fixed |
---|---|
status: | assigned → closed |
Effects: First step() call should match :animated selector
Fixes #14623
Closes gh-1473
Changeset: 085814474e4a854d533b5ccbaef24c090081e0c4
Changed March 20, 2014 02:00AM UTC by comment:4
component: | unfiled → effects |
---|---|
milestone: | None → 1.11/2.1 |
priority: | undecided → low |
That's true:
http://jsfiddle.net/Pyr29/