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

Port to ES6

This commit is contained in:
gion 2020-04-03 18:49:19 +02:00
parent 460c2a1f77
commit 56ee678fc2
5 changed files with 840 additions and 716 deletions

View file

@ -314,6 +314,13 @@ var AppInfo = {};
return obj;
}
function returnDefault(obj) {
if (obj.default === null) {
throw new Error("Object has no default!");
}
return obj.default;
}
function getBowerPath() {
return 'libraries';
}
@ -817,7 +824,7 @@ var AppInfo = {};
define('playbackSettings', [componentsPath + '/playbacksettings/playbacksettings'], returnFirstDependency);
define('homescreenSettings', [componentsPath + '/homescreensettings/homescreensettings'], returnFirstDependency);
define('playbackManager', [componentsPath + '/playback/playbackmanager'], getPlaybackManager);
define('syncplayManager', [componentsPath + '/syncplay/syncplaymanager'], returnFirstDependency);
define('syncplayManager', [componentsPath + '/syncplay/syncplaymanager'], returnDefault);
define('layoutManager', [componentsPath + '/layoutManager', 'apphost'], getLayoutManager);
define('homeSections', [componentsPath + '/homesections/homesections'], returnFirstDependency);
define('playMenu', [componentsPath + '/playmenu'], returnFirstDependency);