mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update recording file names
This commit is contained in:
parent
7d89bd22b9
commit
f7f5c66b77
13 changed files with 66 additions and 33 deletions
|
@ -582,7 +582,13 @@
|
|||
self.enableCustomVideoControls = function () {
|
||||
|
||||
if (AppInfo.isNativeApp && $.browser.safari) {
|
||||
return true;
|
||||
|
||||
if (navigator.userAgent.toLowerCase().indexOf('iphone') != -1) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Need to disable it in order to support picture in picture
|
||||
return false;
|
||||
}
|
||||
|
||||
return self.canAutoPlayVideo() && !$.browser.mobile;
|
||||
|
|
|
@ -273,12 +273,6 @@
|
|||
|
||||
var page = this;
|
||||
|
||||
if (AppInfo.enableCustomHomeSections) {
|
||||
page.querySelector('.homeSections').classList.remove('hide');
|
||||
} else {
|
||||
page.querySelector('.homeSections').classList.add('hide');
|
||||
}
|
||||
|
||||
Dashboard.showLoadingMsg();
|
||||
|
||||
var userId = getParameterByName('userId') || Dashboard.getCurrentUserId();
|
||||
|
|
|
@ -1726,7 +1726,6 @@ var AppInfo = {};
|
|||
AppInfo.enableSearchInTopMenu = true;
|
||||
AppInfo.enableHomeFavorites = true;
|
||||
AppInfo.enableNowPlayingBar = true;
|
||||
AppInfo.enableCustomHomeSections = true;
|
||||
AppInfo.enableHomeTabs = true;
|
||||
AppInfo.enableNowPlayingPageBottomTabs = true;
|
||||
|
||||
|
@ -1747,7 +1746,6 @@ var AppInfo = {};
|
|||
AppInfo.enableNavDrawer = false;
|
||||
AppInfo.enableSearchInTopMenu = false;
|
||||
AppInfo.enableHomeFavorites = false;
|
||||
AppInfo.enableCustomHomeSections = false;
|
||||
AppInfo.enableHomeTabs = false;
|
||||
AppInfo.enableNowPlayingPageBottomTabs = false;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue