1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-02-07 06:52:35 +00:00

Fixed: new series searching is less restrictive

This commit is contained in:
Mark McDowall 2014-04-25 19:42:38 -07:00
parent a7cabc49b4
commit 57a6e39669

View file

@ -57,7 +57,13 @@ define(
this.$el.addClass(this.className);
this.ui.seriesSearch.keypress(function () {
this.ui.seriesSearch.keyup(function (e) {
//Ignore special keys: http://www.javascripter.net/faq/keycodes.htm
if (_.contains([9, 16, 17, 18, 19, 20, 33, 34, 35, 36, 37, 38, 39, 40, 91, 92, 93 ], e.keyCode)) {
return;
}
self.searchResult.close();
self._abortExistingSearch();
self.throttledSearch({