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

Finish web UI

This commit is contained in:
Matt Montgomery 2020-04-12 00:44:30 -05:00
parent b43adb7406
commit fa9e2b476b
12 changed files with 248 additions and 9 deletions

View file

@ -349,6 +349,12 @@ define(["dom", "layoutManager", "inputManager", "connectionManager", "events", "
href: "devices.html",
pageIds: ["devicesPage", "devicePage"],
icon: "devices"
});
links.push({
name: "Quick Connect",
href: "quickconnect.html",
pageIds: ["quickConnectPage", "quickConnectPage"],
icon: "devices"
});
links.push({
name: globalize.translate("HeaderActivity"),

View file

@ -72,6 +72,12 @@ define([
transition: "fade",
controller: "user/subtitles"
});
defineRoute({
path: "/mypreferencesquickconnect.html",
autoFocus: false,
transition: "fade",
controller: "user/quickconnect"
});
defineRoute({
path: "/dashboard.html",
@ -103,6 +109,12 @@ define([
roles: "admin",
controller: "device"
});
defineRoute({
path: "/quickconnect.html",
autoFocus: false,
roles: "admin",
controller: "quickconnect"
});
defineRoute({
path: "/dlnaprofile.html",
autoFocus: false,

View file

@ -829,6 +829,7 @@ var AppInfo = {};
define("displaySettings", [componentsPath + "/displaysettings/displaysettings"], returnFirstDependency);
define("playbackSettings", [componentsPath + "/playbacksettings/playbacksettings"], returnFirstDependency);
define("homescreenSettings", [componentsPath + "/homescreensettings/homescreensettings"], returnFirstDependency);
define("quickConnectSettings", [componentsPath + "/quickconnectsettings/quickconnectsettings"], returnFirstDependency);
define("playbackManager", [componentsPath + "/playback/playbackmanager"], getPlaybackManager);
define("layoutManager", [componentsPath + "/layoutManager", "apphost"], getLayoutManager);
define("homeSections", [componentsPath + "/homesections/homesections"], returnFirstDependency);