electron/docs/fiddles/native-ui/dialogs/information-dialog/renderer.js

8 lines
321 B
JavaScript
Raw Permalink Normal View History

2020-08-27 08:31:51 -06:00
const informationBtn = document.getElementById('information-dialog')
informationBtn.addEventListener('click', async () => {
const index = await window.electronAPI.openInformationDialog()
const message = `You selected: ${index === 0 ? 'yes' : 'no'}`
2020-08-27 08:31:51 -06:00
document.getElementById('info-selection').innerHTML = message
})