mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
13 lines
209 B
CoffeeScript
13 lines
209 B
CoffeeScript
|
Reflux = require 'reflux'
|
||
|
|
||
|
SearchActions = Reflux.createActions [
|
||
|
"querySubmitted"
|
||
|
"queryChanged"
|
||
|
"searchBlurred"
|
||
|
]
|
||
|
|
||
|
for key, action of SearchActions
|
||
|
action.sync = true
|
||
|
|
||
|
module.exports = SearchActions
|