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

rename channel category to channel folder

This commit is contained in:
Luke Pulverenti 2014-05-23 10:09:58 -04:00
parent 624687e363
commit 8cadabcbe5
8 changed files with 24 additions and 15 deletions

View file

@ -804,7 +804,7 @@
// Can't autoplay in these browsers so we need to use the full controls
if (requiresControls) {
if ($.browser.msie) {
html += '<video class="itemVideo" id="itemVideo" preload="none" autoplay="autoplay">';
html += '<video class="itemVideo" id="itemVideo" preload="none" autoplay="autoplay" controls="controls">';
} else {
html += '<video class="itemVideo" id="itemVideo" preload="none" autoplay controls>';
}