electron/docs/fiddles/native-ui/notifications/basic-notification/renderer.js

15 lines
371 B
JavaScript
Raw Normal View History

const notification = {
title: 'Basic Notification',
body: 'Short message part'
}
const notificationButton = document.getElementById('basic-noti')
notificationButton.addEventListener('click', () => {
const myNotification = new window.Notification(notification.title, notification)
myNotification.onclick = () => {
console.log('Notification clicked')
}
})