Skip to content

Commit

Permalink
Merge pull request #943 from HubSpot/ctrl_t_no_search
Browse files Browse the repository at this point in the history
Don't capture ctrl-t
  • Loading branch information
ssalinas committed Mar 17, 2016
2 parents 61a2baf + 4ef6502 commit 9960b29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SingularityUI/app/views/globalSearch.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class GlobalSearchView extends View
focusBody = $(event.target).is 'body'
focusInput = $(event.target).is @$ 'input[type="search"]'

modifierKey = event.metaKey or event.shiftKey
modifierKey = event.metaKey or event.shiftKey or event.ctrlKey
sPressed = event.keyCode in [83, 84] and not modifierKey
escPressed = event.keyCode is 27

Expand Down

0 comments on commit 9960b29

Please # to comment.