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