diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-09-06 22:47:29 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-09-06 22:47:29 +0200 |
commit | 74fba0a817b414579f3223ac508b4fdb8faced98 (patch) | |
tree | dca966416c200e7b929a1b170b83be0e90095d5e /client/lib/keyboard.js | |
parent | 54bc9d0dcbd9c2a0c3099a9ae46126fb1b81779d (diff) | |
download | wekan-74fba0a817b414579f3223ac508b4fdb8faced98.tar.gz wekan-74fba0a817b414579f3223ac508b4fdb8faced98.tar.bz2 wekan-74fba0a817b414579f3223ac508b4fdb8faced98.zip |
Fix a recurrent English typo
Diffstat (limited to 'client/lib/keyboard.js')
-rw-r--r-- | client/lib/keyboard.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/lib/keyboard.js b/client/lib/keyboard.js index 0bb9c380..af5fb7a2 100644 --- a/client/lib/keyboard.js +++ b/client/lib/keyboard.js @@ -6,14 +6,14 @@ Mousetrap.bind('?', () => { }); Mousetrap.bind('w', () => { - Sidebar.toogle(); + Sidebar.toggle(); }); Mousetrap.bind('q', () => { const currentBoardId = Session.get('currentBoard'); const currentUserId = Meteor.userId(); if (currentBoardId && currentUserId) { - Filter.members.toogle(currentUserId); + Filter.members.toggle(currentUserId); } }); @@ -39,7 +39,7 @@ Mousetrap.bind(['down', 'up'], (evt, key) => { Template.keyboardShortcuts.helpers({ mapping: [{ keys: ['W'], - action: 'shortcut-toogle-sidebar', + action: 'shortcut-toggle-sidebar', }, { keys: ['Q'], action: 'shortcut-filter-my-cards', |