diff options
author | zotlabs <mike@macgirvin.com> | 2016-12-04 07:46:31 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-04 07:46:31 +1100 |
commit | a33a5771edea227b2378e2377198ccfddbfdb55d (patch) | |
tree | 0597709dad656e07328e00d652b9412f62d36a1d /include | |
parent | 5bedf3618d0108a767d1cef32634c7be4942110f (diff) | |
parent | 5aeb8305fc5162a7ef2ef5c64827087dd673f47c (diff) | |
download | volse-hubzilla-a33a5771edea227b2378e2377198ccfddbfdb55d.tar.gz volse-hubzilla-a33a5771edea227b2378e2377198ccfddbfdb55d.tar.bz2 volse-hubzilla-a33a5771edea227b2378e2377198ccfddbfdb55d.zip |
Merge pull request #608 from redmatrix/jeroenpraat-patch-1
Fix full screen for embedded videos
Diffstat (limited to 'include')
-rwxr-xr-x | include/oembed.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/oembed.php b/include/oembed.php index 52fb04058..eb7b76437 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -338,7 +338,7 @@ function oembed_iframe($src,$width,$height) { // Make sure any children are sandboxed within their own iframe. - return '<iframe ' . $scroll . 'height="' . $height . '" width="' . $width . '" src="' . $s . '" frameborder="no" >' + return '<iframe ' . $scroll . 'height="' . $height . '" width="' . $width . '" src="' . $s . '" allowfullscreen frameborder="no" >' . t('Embedded content') . '</iframe>'; } |