Skip to content

Instantly share code, notes, and snippets.

@trevorfoskett
Created February 27, 2020 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trevorfoskett/b83f4de7e135fe2c7dafe16ead3e05ba to your computer and use it in GitHub Desktop.
Save trevorfoskett/b83f4de7e135fe2c7dafe16ead3e05ba to your computer and use it in GitHub Desktop.
Send the "open-file-dialog" message to the main process.
const selectDirBtn = document.getElementById('select-files');
selectDirBtn.addEventListener('click', (event) => {
ipcRenderer.send('open-file-dialog');
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment