1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-18 12:21:45 +02:00

New SEF-URL for book/chapter/page (a few bugs remain)

This commit is contained in:
Cameron
2014-01-10 18:27:42 -08:00
parent ed5634574f
commit 7bebfc1901
6 changed files with 268 additions and 11 deletions

View File

@@ -2784,6 +2784,20 @@ class e_parser
return '<div class="video-responsive">'.$video.'</div>';
}
if($type == 'mp4') //TODO FIXME
{
return '
<div class="video-responsive">
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>';
}
return false;
}