in the shortcode.php change all “allowfullscreen” to:
“allowfullscreen=”allowfullscreen” mozallowfullscreen=”mozallowfullscreen” msallowfullscreen=”msallowfullscreen” oallowfullscreen=”oallowfullscreen” webkitallowfullscreen=”webkitallowfullscreen”
And you`re done, the fullscreen button is now enabled. Should look like that:
{
case “1”:
$linkEmbed = tntGetYoutubeEmbedLink($vid->video_link);
$vShow[‘videoFrame’] = ‘<iframe width=”‘.$videoWidth.'” height=”‘.$videoHeight.'” src=”‘.$linkEmbed.'” frameborder=”0″ allowfullscreen=”allowfullscreen” mozallowfullscreen=”mozallowfullscreen” msallowfullscreen=”msallowfullscreen” oallowfullscreen=”oallowfullscreen” webkitallowfullscreen=”webkitallowfullscreen”></iframe>’;
break;
case “2”:
$linkEmbed = tntGetVimeoEmbedLink($vid->video_link);
$vShow[‘videoFrame’] = ‘<iframe width=”‘.$videoWidth.'” height=”‘.$videoHeight.'” src=”‘.$linkEmbed.'” frameborder=”0″ allowfullscreen=”allowfullscreen” mozallowfullscreen=”mozallowfullscreen” msallowfullscreen=”msallowfullscreen” oallowfullscreen=”oallowfullscreen” webkitallowfullscreen=”webkitallowfullscreen”></iframe>’;
break;
}
-
This reply was modified 8 years, 1 month ago by
finpl.
-
This reply was modified 8 years, 1 month ago by
finpl.