diff --git a/plugins/GNUsocialVideo/GNUsocialVideoPlugin.php b/plugins/GNUsocialVideo/GNUsocialVideoPlugin.php index 76053f29f3..850761625e 100644 --- a/plugins/GNUsocialVideo/GNUsocialVideoPlugin.php +++ b/plugins/GNUsocialVideo/GNUsocialVideoPlugin.php @@ -137,7 +137,9 @@ class GNUsocialVideoPlugin extends MicroAppPlugin { $vid = Video::getByNotice($notice); if ($vid) { - $out->element('video', array('src' => $vid->url)); + $out->element('video', array('src' => $vid->url, + 'width' => '100%', + 'controls' => 'controls')); } }