29 lines
568 B
CoffeeScript
29 lines
568 B
CoffeeScript
context = window
|
|
|
|
@ConfigureTracksActions = Reflux.createActions({
|
|
reset: {}
|
|
trySave: {}
|
|
midiScan: {}
|
|
vstScan: {}
|
|
vstScanComplete: {}
|
|
clearVsts: {}
|
|
cancelEdit: {}
|
|
deleteTrack: {}
|
|
updateOutputs: {}
|
|
showAddNewTrack: {}
|
|
showEditTrack: {}
|
|
showEditOutputs: {}
|
|
showVstSettings: {}
|
|
associateInputsWithTrack: {}
|
|
associateInstrumentWithTrack: {}
|
|
associateVSTWithTrack: {}
|
|
associateMIDIWithTrack: {}
|
|
desiredTrackType: {}
|
|
vstChanged: {}
|
|
manageVsts: {}
|
|
enableVst: {}
|
|
addSearchPath: {}
|
|
removeSearchPath: {}
|
|
selectVSTDirectory: {}
|
|
})
|