blob: 965aebfb3f577791165bac2876388abfed5944cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// mediaelement-player
$(function() {
(function(strings) {
strings['en-US'] = {
'Download File': 'Open HLS-Stream in Desktop-Player'
}
})(mejs.i18n.locale.strings);
$('video').mediaelementplayer({
mode: 'auto_plugin',
// hack z-index so that the flash plugin get's the click on the fullscreen button
enableAutosize: true,
pluginPath: '../assets/js/lib/relive/',
});
});
|