mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
#280 - avoid an extra request to last fm by taking data from the MusicArtist entity
This commit is contained in:
parent
ec9a1501c5
commit
a3e75d5502
@ -66,13 +66,6 @@
|
||||
<input class="chkStandardFilter" type="checkbox" name="chkDislikes" id="chkDislikes" data-theme="c" data-filter="Dislikes" data-mini="true">
|
||||
<label for="chkDislikes">Dislikes</label>
|
||||
</fieldset>
|
||||
|
||||
<fieldset data-role="controlgroup">
|
||||
<legend></legend>
|
||||
|
||||
<input class="chkIsOnTour" type="checkbox" name="chkIsOnTour" id="chkIsOnTour" data-theme="c" data-mini="true">
|
||||
<label for="chkIsOnTour">On tour</label>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -94,13 +94,6 @@
|
||||
reloadItems(page);
|
||||
});
|
||||
|
||||
$('#chkIsOnTour', this).on('change', function () {
|
||||
|
||||
query.IsOnTour = this.checked || null;
|
||||
|
||||
reloadItems(page);
|
||||
});
|
||||
|
||||
$('.alphabetPicker', this).on('alphaselect', function (e, character) {
|
||||
|
||||
query.NameStartsWithOrGreater = character;
|
||||
@ -142,8 +135,6 @@
|
||||
|
||||
}).checkboxradio('refresh');
|
||||
|
||||
$('#chkIsOnTour', this).checked(query.IsOnTour === true).checkboxradio('refresh');
|
||||
|
||||
$('.alphabetPicker', this).alphaValue(query.NameStartsWithOrGreater);
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user