mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
12 lines
205 B
CoffeeScript
12 lines
205 B
CoffeeScript
Reflux = require 'reflux'
|
|
|
|
Actions = [
|
|
'focusAccounts',
|
|
'setKeyCollapsed',
|
|
]
|
|
|
|
for idx in Actions
|
|
Actions[idx] = Reflux.createAction(Actions[idx])
|
|
Actions[idx].sync = true
|
|
|
|
module.exports = Actions
|