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

rework a-z picker a little

This commit is contained in:
Luke Pulverenti 2013-05-16 23:24:41 -04:00
parent 9bcadf03cd
commit ba24058f75
12 changed files with 38 additions and 24 deletions

View file

@ -154,13 +154,13 @@
$('.alphabetPicker', this).on('alphaselect', function (e, character) {
query.NameStartsWith = character;
query.NameStartsWithOrGreater = character;
reloadItems(page);
}).on('alphaclear', function (e) {
query.NameStartsWith = '';
query.NameStartsWithOrGreater = '';
reloadItems(page);
});