()
| 88 | } |
| 89 | |
| 90 | function handleOpenButton() { |
| 91 | dialog.showOpenDialog({properties: ['openFile']}, function(filename) { |
| 92 | onChosenFileToOpen(filename.toString()); }); |
| 93 | } |
| 94 | |
| 95 | function handleSaveButton() { |
| 96 | if (fileEntry && hasWriteAccess) { |
nothing calls this directly
no test coverage detected