Fixed: Don't block ctrl+t from opening a new tab
This commit is contained in:
parent
9d29df836d
commit
44abb6fae8
|
@ -10,6 +10,10 @@ define(
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (e.ctrlKey) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (e.keyCode === 84) {
|
if (e.keyCode === 84) {
|
||||||
$('.x-series-search').focus();
|
$('.x-series-search').focus();
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
Loading…
Reference in New Issue