Use t as shortcut to series search navigator

pull/30/head
Mark McDowall 11 years ago
parent df967c1ed1
commit 154a6b39be

@ -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;
});

Loading…
Cancel
Save