mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
e3b8803250
- Ensures that it displays the correct set of sidebar items even when the perspective changes - Also sets up hotkeys to switch currently focused accounts
11 lines
183 B
CoffeeScript
11 lines
183 B
CoffeeScript
Reflux = require 'reflux'
|
|
|
|
Actions = [
|
|
'focusAccounts'
|
|
]
|
|
|
|
for idx in Actions
|
|
Actions[idx] = Reflux.createAction(Actions[idx])
|
|
Actions[idx].sync = true
|
|
|
|
module.exports = Actions
|