1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-06 08:07:20 +02:00

Fixed: Search being triggered from Release Restrictions when pressing 't'

This commit is contained in:
Mark McDowall 2014-01-15 08:59:38 -08:00
parent c50fb84216
commit 2dd7fb9fdf

View File

@ -6,7 +6,7 @@ define(
'Series/SeriesCollection' 'Series/SeriesCollection'
], function (Backbone, $, SeriesCollection) { ], function (Backbone, $, SeriesCollection) {
$(document).on('keydown', function (e) { $(document).on('keydown', function (e) {
if ($(e.target).is('input')) { if ($(e.target).is('input') || $(e.target).is('textarea')) {
return; return;
} }