mirror of
https://github.com/wekan/wekan.git
synced 2025-12-22 10:20:14 +01:00
parent
31c4aa01bd
commit
35d1d6b463
6 changed files with 66 additions and 4 deletions
|
|
@ -35,3 +35,28 @@ Mousetrap.bind(['down', 'up'], (evt, key) => {
|
|||
Utils.goCardId(nextCardId);
|
||||
}
|
||||
});
|
||||
|
||||
Template.keyboardShortcuts.helpers({
|
||||
mapping: [{
|
||||
keys: ['W'],
|
||||
action: 'Toogle Board Sidebar'
|
||||
}, {
|
||||
keys: ['Q'],
|
||||
action: 'Filter my cards'
|
||||
}, {
|
||||
keys: ['X'],
|
||||
action: 'Clear all filters'
|
||||
}, {
|
||||
keys: ['?'],
|
||||
action: 'Bring up this shortcuts list'
|
||||
}, {
|
||||
keys: ['ESC'],
|
||||
action: 'Close Dialog'
|
||||
}, {
|
||||
keys: ['@'],
|
||||
action: 'Autocomplete members'
|
||||
}, {
|
||||
keys: [':'],
|
||||
action: 'Autocomplete emojies'
|
||||
}]
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue