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

add remember me option

This commit is contained in:
Luke Pulverenti 2016-08-20 02:58:35 -04:00
parent 18da0bbdcf
commit 5018f2190b
6 changed files with 43 additions and 20 deletions

View file

@ -1,4 +1,4 @@
define(['paper-icon-button-light'], function () {
define(['appSettings', 'paper-icon-button-light'], function (appSettings) {
function updatePageStyle(page) {
@ -98,7 +98,11 @@
Dashboard.showLoadingMsg();
ConnectionManager.connectToServer(server).then(function (result) {
ConnectionManager.connectToServer(server, {
enableAutoLogin: appSettings.enableAutoLogin()
}).then(function (result) {
Dashboard.hideLoadingMsg();