[TIMOB-2647] iOS: view.animate() callback not always invoked
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Trivial |
| Status | Closed |
| Resolution | Needs more info |
| Resolution Date | 2012-07-26T14:49:21.000+0000 |
| Affected Version/s | Release 1.5.1 |
| Fix Version/s | n/a |
| Components | iOS |
| Labels | n/a |
| Reporter | tom quas |
| Assignee | Neeraj Gupta |
| Created | 2011-04-15T03:25:46.000+0000 |
| Updated | 2012-07-26T21:25:10.000+0000 |
Description
I got the following code:
var slide_out = Ti.UI.createAnimation({ bottom:-251 }); bday_pv.animate(slide_out, function() {
log('>> never called');
);
the callback is never being called. Changing the code to
bday_pv.animate({ bottom:-251 }, function() {
log('>> gotcha');
});
makes it work.
Requires *complete* & valid test case
Ticket can be reopened when this is provided