NativeAnimated - Fix missing update at the end of the batch

Summary:
This call got lost in the refactor of #11819 and caused some view updating issues.
Closes https://github.com/facebook/react-native/pull/13183

Differential Revision: D4787565

Pulled By: javache

fbshipit-source-id: 8f7d456824c67abee6ac1d5f906e4c831ede889b
This commit is contained in:
Janic Duplessis 2017-03-28 10:50:00 -07:00 committed by Facebook Github Bot
parent 33000c74f9
commit f46fd36a44

View File

@ -217,6 +217,8 @@ RCT_EXPORT_METHOD(removeAnimatedEventFromView:(nonnull NSNumber *)viewTag
for (AnimatedOperation operation in operations) {
operation(self->_nodesManager);
}
[self->_nodesManager updateAnimations];
}];
}