diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-04-09 00:11:10 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2018-04-09 00:11:10 +0200 |
commit | 0fb5ea5d15b4d110ae725c7f232a6d78c05995cf (patch) | |
tree | 1115b97f94d5fe879297189835bad05c7fc70de3 /app/javascript | |
parent | a896f601fa0744c4d28cdeab1a2d008a3276a46b (diff) |
Fix video modal
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/flavours/glitch/features/status/components/detailed_status.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/javascript/flavours/glitch/features/status/components/detailed_status.js b/app/javascript/flavours/glitch/features/status/components/detailed_status.js index b1835844c..9e42481c5 100644 --- a/app/javascript/flavours/glitch/features/status/components/detailed_status.js +++ b/app/javascript/flavours/glitch/features/status/components/detailed_status.js @@ -35,9 +35,9 @@ export default class DetailedStatus extends ImmutablePureComponent { e.stopPropagation(); } - // handleOpenVideo = startTime => { - // this.props.onOpenVideo(this.props.status.getIn(['media_attachments', 0]), startTime); - // } + handleOpenVideo = startTime => { + this.props.onOpenVideo(this.props.status.getIn(['media_attachments', 0]), startTime); + } render () { const status = this.props.status.get('reblog') ? this.props.status.get('reblog') : this.props.status; @@ -61,7 +61,7 @@ export default class DetailedStatus extends ImmutablePureComponent { sensitive={status.get('sensitive')} letterbox={settings.getIn(['media', 'letterbox'])} fullwidth={settings.getIn(['media', 'fullwidth'])} - onOpenVideo={this.props.onOpenVideo} + onOpenVideo={this.handleOpenVideo} autoplay /> ); |