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

duplicate password fields on admin side

This commit is contained in:
Luke Pulverenti 2015-01-31 22:29:26 -05:00
parent fd496448ac
commit 0a89e195a5
5 changed files with 87 additions and 36 deletions

View file

@ -4,7 +4,13 @@
Dashboard.setPageTitle(user.Name);
$('.lnkEditUserPreferences', page).attr('href', 'myprofile.html?userId=' + user.Id);
if (user.ConnectLinkType == 'Guest') {
$('.connectMessage', page).show();
}
else {
$('.connectMessage', page).hide();
}
Dashboard.hideLoadingMsg();
}