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

Changed code to camel case

This commit is contained in:
Matt Montgomery 2020-05-01 14:18:04 -05:00
parent 8655de4469
commit d8cfe064e6
4 changed files with 7 additions and 7 deletions

View file

@ -24,7 +24,7 @@ define(["apphost", "connectionManager", "layoutManager", "listViewStyle", "emby-
page.querySelector(".lnkHomePreferences").setAttribute("href", "mypreferenceshome.html?userId=" + userId);
page.querySelector(".lnkPlaybackPreferences").setAttribute("href", "mypreferencesplayback.html?userId=" + userId);
page.querySelector(".lnkSubtitlePreferences").setAttribute("href", "mypreferencessubtitles.html?userId=" + userId);
page.querySelector(".lnkQuickConnectPreferences").setAttribute("href", "mypreferencesquickconnect.html?userId=" + userId);
page.querySelector(".lnkQuickConnectPreferences").setAttribute("href", "myPreferencesQuickConnect.html?userId=" + userId);
if (window.NativeShell && window.NativeShell.AppHost.supports("clientsettings")) {
page.querySelector(".clientSettings").classList.remove("hide");

View file

@ -352,7 +352,7 @@ define(["dom", "layoutManager", "inputManager", "connectionManager", "events", "
});
links.push({
name: globalize.translate("QuickConnect"),
href: "quickconnect.html",
href: "quickConnect.html",
pageIds: ["quickConnectPage", "quickConnectPage"],
icon: "tap_and_play"
});

View file

@ -73,10 +73,10 @@ define([
controller: "user/subtitles"
});
defineRoute({
path: "/mypreferencesquickconnect.html",
path: "/myPreferencesQuickConnect.html",
autoFocus: false,
transition: "fade",
controller: "user/quickconnect"
controller: "user/quickConnect"
});
defineRoute({
@ -110,10 +110,10 @@ define([
controller: "device"
});
defineRoute({
path: "/quickconnect.html",
path: "/quickConnect.html",
autoFocus: false,
roles: "admin",
controller: "quickconnect"
controller: "quickConnect"
});
defineRoute({
path: "/dlnaprofile.html",

View file

@ -829,7 +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("quickConnectSettings", [componentsPath + "/quickConnectSettings/quickConnectSettings"], returnFirstDependency);
define("playbackManager", [componentsPath + "/playback/playbackmanager"], getPlaybackManager);
define("layoutManager", [componentsPath + "/layoutManager", "apphost"], getLayoutManager);
define("homeSections", [componentsPath + "/homesections/homesections"], returnFirstDependency);