2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00

try moving shortcut to ctrl+alt+f

This commit is contained in:
Sam 2017-10-18 12:20:45 +11:00
parent a4c539bade
commit 7f9b0f5e60
3 changed files with 3 additions and 4 deletions

View file

@ -233,7 +233,7 @@ export default Ember.Component.extend({
const shortcuts = this.get('toolbar.shortcuts');
// for some reason I am having trouble bubbling this so hack it in
mouseTrap.bind(['ctrl+alt+s','command+alt+s'], (event) =>{
mouseTrap.bind(['ctrl+alt+f'], (event) =>{
this.appEvents.trigger('header:keyboard-trigger', {type: 'search', event});
return true;
});