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

update tuner saving

This commit is contained in:
Luke Pulverenti 2015-08-20 13:40:11 -04:00
parent fb05bbd6b5
commit d1b79b8799
2 changed files with 3 additions and 1 deletions

View file

@ -26,7 +26,7 @@
</div>
<div>
<br />
<paper-checkbox class="chkEnabled">${LabelEnableThisTuner}</paper-checkbox>
<paper-checkbox class="chkEnabled" checked>${LabelEnableThisTuner}</paper-checkbox>
<div class="fieldDescription paperCheckboxFieldDescription">${LabelEnableThisTunerHelp}</div>
</div>
<div>

View file

@ -17,6 +17,8 @@
page.querySelector('.chkEnabled').checked = info.IsEnabled;
});
} else {
page.querySelector('.chkEnabled').checked = true;
}
}