aboutsummaryrefslogtreecommitdiff
path: root/views/default/videolist/watch
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/videolist/watch')
-rw-r--r--views/default/videolist/watch/bliptv.php4
-rw-r--r--views/default/videolist/watch/gisstv.php4
-rw-r--r--views/default/videolist/watch/metacafe.php4
-rw-r--r--views/default/videolist/watch/vimeo.php4
-rw-r--r--views/default/videolist/watch/youtube.php4
5 files changed, 5 insertions, 15 deletions
diff --git a/views/default/videolist/watch/bliptv.php b/views/default/videolist/watch/bliptv.php
index b7f72dea6..241cf791b 100644
--- a/views/default/videolist/watch/bliptv.php
+++ b/views/default/videolist/watch/bliptv.php
@@ -1,7 +1,5 @@
<?php
$embedurl = $vars['entity']->embedurl;
-$width = $vars['width'];
-$height = $vars['height'];
-echo "<iframe src=\"$embedurl\" width=\"$width\" height=\"$height\" frameborder=\"0\" allowfullscreen></iframe>";
+echo "<iframe src=\"$embedurl\" frameborder=\"0\" allowfullscreen></iframe>";
diff --git a/views/default/videolist/watch/gisstv.php b/views/default/videolist/watch/gisstv.php
index 15a903ab1..a96894ada 100644
--- a/views/default/videolist/watch/gisstv.php
+++ b/views/default/videolist/watch/gisstv.php
@@ -1,9 +1,7 @@
<?php
$video_id = $vars['entity']->video_id;
-$width = $vars['width'];
-$height = $vars['height'];
-echo "<video width=\"$width\" height=\"$height\" controls=\"\" tabindex=\"0\">
+echo "<video controls=\"\" tabindex=\"0\">
<source type=\"video/ogg\" src=\"http://giss.tv/dmmdb//contents/$video_id\"></source>
</video>";
diff --git a/views/default/videolist/watch/metacafe.php b/views/default/videolist/watch/metacafe.php
index ddf2b155e..40b632cf6 100644
--- a/views/default/videolist/watch/metacafe.php
+++ b/views/default/videolist/watch/metacafe.php
@@ -1,7 +1,5 @@
<?php
$embedurl = $vars['entity']->embedurl;
-$width = $vars['width'];
-$height = $vars['height'];
-echo "<embed flashVars=\"playerVars=autoPlay=no\" src=\"$embedurl\" width=\"540\" height=\"304\" wmode=\"transparent\" allowFullScreen=\"true\" allowScriptAccess=\"always\" name=\"Metacafe_$video_id\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\"></embed>";
+echo "<embed flashVars=\"playerVars=autoPlay=no\" src=\"$embedurl\" wmode=\"transparent\" allowFullScreen=\"true\" allowScriptAccess=\"always\" name=\"Metacafe_$video_id\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\"></embed>";
diff --git a/views/default/videolist/watch/vimeo.php b/views/default/videolist/watch/vimeo.php
index 97b5e8d88..d3ffd4391 100644
--- a/views/default/videolist/watch/vimeo.php
+++ b/views/default/videolist/watch/vimeo.php
@@ -1,7 +1,5 @@
<?php
$video_id = $vars['entity']->video_id;
-$width = $vars['width'];
-$height = $vars['height'];
-echo "<iframe src=\"http://player.vimeo.com/video/$video_id?byline=0\" width=\"$width\" height=\"$height\" frameborder=\"0\" webkitAllowFullScreen allowFullScreen></iframe>";
+echo "<iframe src=\"http://player.vimeo.com/video/$video_id?byline=0\" frameborder=\"0\" webkitAllowFullScreen allowFullScreen></iframe>";
diff --git a/views/default/videolist/watch/youtube.php b/views/default/videolist/watch/youtube.php
index e0b2ece06..b0b758718 100644
--- a/views/default/videolist/watch/youtube.php
+++ b/views/default/videolist/watch/youtube.php
@@ -1,7 +1,5 @@
<?php
$video_id = $vars['entity']->video_id;
-$width = $vars['width'];
-$height = $vars['height'];
-echo "<iframe width=\"$width\" height=\"$height\" src=\"https://www.youtube-nocookie.com/embed/$video_id\" frameborder=\"0\" allowfullscreen></iframe>";
+echo "<iframe src=\"https://www.youtube-nocookie.com/embed/$video_id\" frameborder=\"0\" allowfullscreen></iframe>";