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

add m3u url to sat page

This commit is contained in:
Luke Pulverenti 2016-03-17 13:11:23 -04:00
parent 0bd0cc2719
commit f9963247df
15 changed files with 70 additions and 47 deletions

View file

@ -12,6 +12,7 @@
})[0];
page.querySelector('.txtDevicePath').value = info.Url || '';
page.querySelector('.txtM3uUrl').value = info.M3UUrl || '';
page.querySelector('.chkEnabled').checked = info.IsEnabled;
});
}
@ -47,6 +48,7 @@
function fillInfoFromPage(page, info) {
info.Url = page.querySelector('.txtDevicePath').value;
info.M3UUrl = page.querySelector('.txtM3uUrl').value;
info.IsEnabled = page.querySelector('.chkEnabled').checked;
}