1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fixes for chrome 35

This commit is contained in:
Luke Pulverenti 2014-04-13 14:25:22 -04:00
parent 9f83edf9ec
commit b8c3e8c777
4 changed files with 23 additions and 22 deletions

View file

@ -32,6 +32,7 @@
self.initVideoPlayer = function () {
video = playVideo(item, mediaSource, startPosition, user);
return video;
};
@ -861,9 +862,9 @@
// Can't autoplay in these browsers so we need to use the full controls
if (requiresControls) {
html += '<video class="itemVideo" id="itemVideo" autoplay controls preload="none">';
html += '<video class="itemVideo" id="itemVideo" autoplay controls>';
} else {
html += '<video class="itemVideo" id="itemVideo" autoplay preload="none">';
html += '<video class="itemVideo" id="itemVideo" autoplay>';
}
if (!isStatic) {
@ -890,7 +891,6 @@
$('#video-stopButton', videoControls).show();
$('#video-playButton', videoControls).hide();
$('#video-pauseButton', videoControls).show();
$('#video-playlistButton', videoControls).hide();
$('#video-previousTrackButton', videoControls).hide();
$('#video-nextTrackButton', videoControls).hide();
var videoElement = $('#videoElement', mediaPlayer).prepend(html);