HummingBirdAnimeClient/public/js/manga_collection.js

23 lines
568 B
JavaScript
Raw Normal View History

2016-02-08 20:21:41 -05:00
((_) => {
2016-02-02 11:34:03 -05:00
'use strict';
const search = (query) => {
2016-02-08 20:21:41 -05:00
_.$('.cssload-loader')[0].removeAttribute('hidden');
2017-02-16 13:22:26 -05:00
_.get(_.url('/manga/search'), {query}, (searchResults, status) => {
2016-02-08 13:37:44 -05:00
searchResults = JSON.parse(searchResults);
2016-02-08 20:21:41 -05:00
_.$('.cssload-loader')[0].setAttribute('hidden', 'hidden');
_.$('#series_list')[0].innerHTML = render_manga_search_results(searchResults.data);
2016-02-02 11:34:03 -05:00
});
};
_.on('#search', 'keyup', _.throttle(250, function(e) {
let query = encodeURIComponent(this.value);
if (query === '') {
return;
}
2016-02-02 11:34:03 -05:00
search(query);
}));
2016-02-02 11:34:03 -05:00
2016-02-08 20:21:41 -05:00
})(AnimeClient);