mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
update schedules direct
This commit is contained in:
parent
ac2b34c25d
commit
a3c09327e0
@ -51,6 +51,14 @@
|
||||
</div>
|
||||
<form class="formListings">
|
||||
<div>
|
||||
<div>
|
||||
<br />
|
||||
<label for="selectCountry">${LabelCountry}</label>
|
||||
<select id="selectCountry" data-mini="true" required="required">
|
||||
<option value="ca">Canada</option>
|
||||
<option value="us" selected>United States</option>
|
||||
</select>
|
||||
</div>
|
||||
<div>
|
||||
<br />
|
||||
<label for="txtZipCode">${LabelZipCode}</label>
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
listingsId = info.ListingsId;
|
||||
$('#selectListing', page).val(info.ListingsId || '').selectmenu('refresh');
|
||||
$('#selectCountry', page).val(info.Country || '').selectmenu('refresh');
|
||||
$('#txtZipCode', page).val(info.ZipCode || '').trigger('change');
|
||||
$('#txtUser', page).val(info.Username || '');
|
||||
|
||||
@ -66,6 +67,7 @@
|
||||
})[0];
|
||||
|
||||
info.ZipCode = $('#txtZipCode', page).val();
|
||||
info.Country = $('#selectCountry', page).val();
|
||||
info.ListingsId = $('#selectListing', page).val();
|
||||
|
||||
ApiClient.ajax({
|
||||
|
Loading…
Reference in New Issue
Block a user