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:
parent
0bd0cc2719
commit
f9963247df
15 changed files with 70 additions and 47 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue