mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
simplify ternary expression
Co-Authored-By: dkanada <dkanada@users.noreply.github.com>
This commit is contained in:
parent
3eb533d4bb
commit
dd3d5ef9dc
1 changed files with 1 additions and 1 deletions
|
@ -1040,7 +1040,7 @@ var Dashboard = {
|
|||
}, appRouter.showSelectServer = function() {
|
||||
AppInfo.isNativeApp ? Dashboard.navigate("selectserver.html") : Dashboard.navigate("login.html")
|
||||
}, appRouter.showWelcome = function() {
|
||||
AppInfo.isNativeApp ? Dashboard.navigate("selectserver.html") : Dashboard.navigate("login.html")
|
||||
Dashboard.navigate(AppInfo.isNativeApp ? "selectserver.html" : "login.html")
|
||||
}, appRouter.showSettings = function() {
|
||||
Dashboard.navigate("mypreferencesmenu.html")
|
||||
}, appRouter.showGuide = function() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue