id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,blocking,blockedby
7157,"Animation callback shows element is still "":animated""",Motty,gnarf,"After an element has completed its animation, the callback still shows that the element is animated. I posted a demo here: http://jsfiddle.net/5V5M3/

{{{
$("".block"").animate({
    ""left"": ""+=50px""
}, ""slow"", function() {
    alert($("".block"").is(':animated'));
});
}}}

I can hack around it by basically using a setTimeout:

{{{
$("".block"").animate({
    ""left"": ""+=50px""
}, ""slow"", function() {
    setTimeout(function() { alert($("".block"").is(':animated')) }, 0);
});
}}}",bug,closed,low,1.8,effects,1.4.2,fixed,animation callback,,,
