mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-09-12 15:44:40 +08:00
13 lines
295 B
CoffeeScript
13 lines
295 B
CoffeeScript
|
|
class NativeNotifications
|
|
constructor: ->
|
|
|
|
displayNotification: ({title, subtitle, body, tag, canReply, onActivate} = {}) =>
|
|
n = new Notification(title, {
|
|
silent: true
|
|
body: subtitle
|
|
tag: tag
|
|
})
|
|
n.onclick = onActivate
|
|
|
|
module.exports = new NativeNotifications
|