mirror of
https://github.com/JustusPlays78/SectorFileUpdater.git
synced 2025-04-30 12:24:48 +00:00
9 lines
234 B
JavaScript
9 lines
234 B
JavaScript
|
const { ipcRenderer } = require('electron')
|
||
|
|
||
|
process.once('loaded', () => {
|
||
|
window.addEventListener('message', evt => {
|
||
|
if (evt.data.type === 'select-dirs') {
|
||
|
ipcRenderer.send('select-dirs')
|
||
|
}
|
||
|
})
|
||
|
})
|