2013-05-05 12:24:20 +00:00
|
|
|
remote = require 'remote'
|
|
|
|
dialog = remote.require 'dialog'
|
2013-05-03 11:31:24 +00:00
|
|
|
|
2013-05-05 12:24:20 +00:00
|
|
|
win = remote.getCurrentWindow()
|
2013-05-03 11:31:24 +00:00
|
|
|
|
|
|
|
module.exports =
|
2013-05-05 12:24:20 +00:00
|
|
|
openFolder: (args...) -> dialog.openFolder win, args...
|
|
|
|
saveAs: (args...) -> dialog.saveAs win, args...
|
|
|
|
openFile: (args...) -> dialog.openFile win, args...
|
|
|
|
openMultiFiles: (args...) -> dialog.openMultiFiles win, args...
|