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

fix live tv guide config in wizard

This commit is contained in:
Luke Pulverenti 2016-07-05 12:55:37 -04:00
parent 6506e9dc09
commit 5b643af505
3 changed files with 3 additions and 2 deletions

View file

@ -159,7 +159,7 @@
} }
self.submit = function () { self.submit = function () {
page.querySelector('.btnSubmitListingsContainer').click(); page.querySelector('.btnSubmitListings').click();
}; };
function onSelectPathClick(e) { function onSelectPathClick(e) {

View file

@ -32,7 +32,7 @@
instance.init(); instance.init();
guideController = instance; guideController = instance;
$(guideController).on('submitted', skip); Events.on(guideController, 'submitted', skip);
}); });
}); });
} }

View file

@ -16,6 +16,7 @@
<label for="selectType" class="selectLabel">${LabelDataProvider}</label> <label for="selectType" class="selectLabel">${LabelDataProvider}</label>
<select id="selectType" data-mini="true" required="required"> <select id="selectType" data-mini="true" required="required">
<option value="SchedulesDirect">Schedules Direct</option> <option value="SchedulesDirect">Schedules Direct</option>
<option value="xmltv">Xml TV</option>
</select> </select>
<div class="fieldDescription">${AdditionalLiveTvProvidersCanBeInstalledLater}</div> <div class="fieldDescription">${AdditionalLiveTvProvidersCanBeInstalledLater}</div>
</div> </div>