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

update wizard user page

This commit is contained in:
Luke Pulverenti 2016-06-23 13:21:37 -04:00
parent b4c8cb07c9
commit d80f8205eb
2 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@
$('#selectVideoDecoder', page).val(config.HardwareAccelerationType); $('#selectVideoDecoder', page).val(config.HardwareAccelerationType);
$('#selectThreadCount', page).val(config.EncodingThreadCount); $('#selectThreadCount', page).val(config.EncodingThreadCount);
$('#txtDownMixAudioBoost', page).val(config.DownMixAudioBoost); $('#txtDownMixAudioBoost', page).val(config.DownMixAudioBoost);
$('.txtEncoderPath', page).val(config.EncoderAppPath || ''); page.querySelector('.txtEncoderPath').value = config.EncoderAppPath || '';
$('#txtTranscodingTempPath', page).val(config.TranscodingTempPath || ''); $('#txtTranscodingTempPath', page).val(config.TranscodingTempPath || '');
Dashboard.hideLoadingMsg(); Dashboard.hideLoadingMsg();

View file

@ -93,8 +93,8 @@
apiClient.getJSON(apiClient.getUrl('Startup/User')).then(function (user) { apiClient.getJSON(apiClient.getUrl('Startup/User')).then(function (user) {
page.querySelector('#txtUsername').value = user.Name; page.querySelector('#txtUsername').value = user.Name || '';
page.querySelector('#txtConnectUserName').value = user.ConnectUserName; page.querySelector('#txtConnectUserName').value = user.ConnectUserName || '';
Dashboard.hideLoadingMsg(); Dashboard.hideLoadingMsg();
}); });