diff --git a/UI/app.js b/UI/app.js index 8f64f4790..d726c0830 100644 --- a/UI/app.js +++ b/UI/app.js @@ -230,5 +230,16 @@ define( 'jQuery/TooltipBinder' ]); + $(document).on('keydown', function (e){ + if ($(e.target).is('input')) { + return; + } + + if (e.keyCode === 84) { + $('.x-series-search').focus(); + e.preventDefault(); + } + }); + return app; });