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

remove some paper inputs

This commit is contained in:
Luke Pulverenti 2016-08-21 14:33:17 -04:00
parent faf5fe7af6
commit 7af088def3
10 changed files with 107 additions and 118 deletions

View file

@ -3,9 +3,9 @@
function load(page, device, capabilities) {
if (capabilities.SupportsContentUploading) {
$('#fldCameraUploadPath', page).show();
$('#fldCameraUploadPath', page).removeClass('hide');
} else {
$('#fldCameraUploadPath', page).hide();
$('#fldCameraUploadPath', page).addClass('hide');
}
$('#txtCustomName', page).val(device.CustomName || '');