Mailspring/internal_packages/account-sidebar/lib/sidebar-actions.coffee
Juan Tejada e3b8803250 Update sidebar to hold state for selected account
- Ensures that it displays the correct set of sidebar items even when
  the perspective changes
- Also sets up hotkeys to switch currently focused accounts
2016-01-21 14:13:48 -08:00

12 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