about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/status
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-04-13 17:01:09 +0200
committerEugen Rochko <eugen@zeonfederated.com>2017-04-13 17:01:09 +0200
commit5f8155482ab494e9b509f61baad7e3d5303176f1 (patch)
treeba68ce1440f33189a1ac16ebb793e35f75c3d73d /app/assets/javascripts/components/features/status
parente70b84b1dc39ccc2e98bc2e93c8a10d067a9a271 (diff)
Add overlay style to buttons, continue video after expanding it
Diffstat (limited to 'app/assets/javascripts/components/features/status')
-rw-r--r--app/assets/javascripts/components/features/status/index.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/components/features/status/index.jsx b/app/assets/javascripts/components/features/status/index.jsx
index b30d991e4..7ead68807 100644
--- a/app/assets/javascripts/components/features/status/index.jsx
+++ b/app/assets/javascripts/components/features/status/index.jsx
@@ -112,8 +112,8 @@ const Status = React.createClass({
     this.props.dispatch(openModal('MEDIA', { media, index }));
   },
 
-  handleOpenVideo (media) {
-    this.props.dispatch(openModal('VIDEO', { media }));
+  handleOpenVideo (media, time) {
+    this.props.dispatch(openModal('VIDEO', { media, time }));
   },
 
   handleReport (status) {