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