]> git.mxchange.org Git - friendica.git/commitdiff
Bugfix: Fix full screen for embedded videos
authorrabuzarus <>
Sun, 4 Dec 2016 13:55:57 +0000 (14:55 +0100)
committerrabuzarus <>
Sun, 4 Dec 2016 13:55:57 +0000 (14:55 +0100)
include/oembed.php

index a3d2deaca00fead83b14b1fec50605179b040e2f..5abd03b61769587180e292d9ebdb825e12ddf757 100755 (executable)
@@ -261,7 +261,7 @@ function oembed_iframe($src, $width, $height) {
        $width = '100%';
 
        $s = App::get_baseurl() . '/oembed/'.base64url_encode($src);
-       return '<iframe onload="resizeIframe(this);" class="embed_rich" height="' . $height . '" width="' . $width . '" src="' . $s . '" scrolling="no" frameborder="no">' . t('Embedded content') . '</iframe>';
+       return '<iframe onload="resizeIframe(this);" class="embed_rich" height="' . $height . '" width="' . $width . '" src="' . $s . '" allowfullscreen scrolling="no" frameborder="no">' . t('Embedded content') . '</iframe>';
 }