Fix regression reported by @eduedix - not automatically playing

- Was introduced with `pause` prop
This commit is contained in:
Brent Vatne 2015-04-07 08:31:40 -07:00
parent 116ee6844f
commit 90a0f85cf9
2 changed files with 8 additions and 6 deletions

View File

@ -76,6 +76,8 @@
@"canStepForward": [NSNumber numberWithBool:video.canStepForward],
@"target": self.reactTag
}];
[_player play];
}
- (void)setResizeMode:(NSString*)mode
@ -85,11 +87,11 @@
- (void)setPause:(BOOL)wantsToPause
{
if (wantsToPause) {
[_player pause];
} else {
[_player play];
}
if (wantsToPause) {
[_player pause];
} else {
[_player play];
}
}

View File

@ -1,6 +1,6 @@
{
"name": "react-native-video",
"version": "0.2.0",
"version": "0.2.1",
"description": "A <Video> element for react-native",
"main": "Video.ios.js",
"author": "Brent Vatne <brentvatne@gmail.com> (https://github.com/brentvatne)",