mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #592 from grafixeyehero/screensaver
Add Screen saver
This commit is contained in:
commit
cbb9ee7d26
7 changed files with 406 additions and 2 deletions
|
@ -532,7 +532,9 @@ var AppInfo = {};
|
|||
"components/htmlaudioplayer/plugin",
|
||||
"components/htmlvideoplayer/plugin",
|
||||
"components/photoplayer/plugin",
|
||||
"components/youtubeplayer/plugin"
|
||||
"components/youtubeplayer/plugin",
|
||||
"components/backdropscreensaver/plugin",
|
||||
"components/logoscreensaver/plugin"
|
||||
];
|
||||
|
||||
if (appHost.supports("remotecontrol")) {
|
||||
|
@ -594,6 +596,8 @@ var AppInfo = {};
|
|||
require(["playerSelectionMenu", "components/playback/remotecontrolautoplay"]);
|
||||
}
|
||||
|
||||
require(["components/screensavermanager"]);
|
||||
|
||||
if (!appHost.supports("physicalvolumecontrol") || browser.touch) {
|
||||
require(["components/playback/volumeosd"]);
|
||||
}
|
||||
|
@ -671,7 +675,8 @@ var AppInfo = {};
|
|||
autoPlayDetect: componentsPath + "/playback/autoplaydetect",
|
||||
nowPlayingHelper: componentsPath + "/playback/nowplayinghelper",
|
||||
pluginManager: componentsPath + "/pluginManager",
|
||||
packageManager: componentsPath + "/packagemanager"
|
||||
packageManager: componentsPath + "/packagemanager",
|
||||
screensaverManager: componentsPath + "/screensavermanager"
|
||||
};
|
||||
|
||||
requirejs.onError = onRequireJsError;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue