mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
stub out xml tv class
This commit is contained in:
parent
256b44764f
commit
3226bd017c
4 changed files with 31 additions and 13 deletions
|
@ -56,6 +56,15 @@
|
|||
|
||||
function submitListingsForm(page) {
|
||||
|
||||
var selectedListingsId = $('#selectListing', page).val();
|
||||
|
||||
if (!selectedListingsId) {
|
||||
Dashboard.alert({
|
||||
message: Globalize.translate('ErrorPleaseSelectLineup')
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
Dashboard.showLoadingMsg();
|
||||
|
||||
var id = providerId;
|
||||
|
@ -68,7 +77,7 @@
|
|||
|
||||
info.ZipCode = $('#txtZipCode', page).val();
|
||||
info.Country = $('#selectCountry', page).val();
|
||||
info.ListingsId = $('#selectListing', page).val();
|
||||
info.ListingsId = selectedListingsId;
|
||||
|
||||
ApiClient.ajax({
|
||||
type: "POST",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue