Added missing brackets

This commit is contained in:
Michael 2015-03-30 19:17:44 +02:00 committed by SteveGilvarry
parent 6c8dbb8bea
commit 477c34cc2c
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ if ( $event['VideoWriter'] )
<script src="//vjs.zencdn.net/4.11/video.js"></script>
<script src='./js/videojs.zoomrotate.js'></script>
<div id="videoFeed">
<video id="videoobj" class="video-js vjs-default-skin" width="<?php echo reScale( $event['Width'], $scale ) ?>" height="<?php echo reScale( $event['Height'], $scale ) ?>" data-setup='{ "controls": true, "autoplay": true, "preload": "auto", "plugins": { "zoomrotate": { "rotate": "<?php echo $Rotation ?>", "zoom": "<?php echo $Zoom ?>"}' >
<video id="videoobj" class="video-js vjs-default-skin" width="<?php echo reScale( $event['Width'], $scale ) ?>" height="<?php echo reScale( $event['Height'], $scale ) ?>" data-setup='{ "controls": true, "autoplay": true, "preload": "auto", "plugins": { "zoomrotate": { "rotate": "<?php echo $Rotation ?>", "zoom": "<?php echo $Zoom ?>"}}}'>
<source src="<?php echo getEventDefaultVideoPath($event) ?>" type="video/mp4">
Your browser does not support the video tag.
</video>