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

update components

This commit is contained in:
Luke Pulverenti 2016-11-01 14:29:18 -04:00
parent 7de90af256
commit c761f8d622
7 changed files with 15 additions and 41 deletions

View file

@ -188,7 +188,12 @@
ApiClient.getSystemInfo().then(function (systemInfo) {
page.querySelector('.fldSelectEncoderPathType').classList.remove('hide');
if (systemInfo.EncoderLocationType == "External") {
page.querySelector('.fldSelectEncoderPathType').classList.add('hide');
} else {
page.querySelector('.fldSelectEncoderPathType').classList.remove('hide');
}
loadPage(page, config, systemInfo);
});
});