28 lines
851 B
PHP
28 lines
851 B
PHP
<?php
|
|
if(!isset($MEDIAPLAYER_INCLUDED)):
|
|
// Make sure mediaplayer JS is not applied more than once on a page.
|
|
View::share('MEDIAPLAYER_INCLUDED', true);
|
|
?>
|
|
@push('scripts')
|
|
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/mediaelement/4.2.7/mediaelement-and-player.min.js"></script>
|
|
<script type="text/javascript">
|
|
var pluginPath = 'https://cdnjs.cloudflare.com/ajax/libs/mediaelement/4.2.7/';
|
|
$("audio").mediaelementplayer({
|
|
pluginPath: pluginPath,
|
|
stretching: 'responsive',
|
|
});
|
|
$("video").mediaelementplayer({
|
|
pluginPath: pluginPath,
|
|
videoWidth: '100%',
|
|
videoHeight: '100%',
|
|
enableAutosize: true,
|
|
});
|
|
</script>
|
|
@endpush
|
|
|
|
@push('styles')
|
|
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/mediaelement/4.2.7/mediaelementplayer.css" />
|
|
@endpush
|
|
|
|
<?php endif; ?>
|