mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
13 lines
213 B
CoffeeScript
13 lines
213 B
CoffeeScript
|
Reflux = require 'reflux'
|
||
|
|
||
|
Actions = [
|
||
|
'temporarilyEnableImages'
|
||
|
'permanentlyEnableImages'
|
||
|
]
|
||
|
|
||
|
for key in Actions
|
||
|
Actions[key] = Reflux.createAction(name)
|
||
|
Actions[key].sync = true
|
||
|
|
||
|
module.exports = Actions
|