mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-01 21:07:59 +08:00
12 lines
276 B
CoffeeScript
12 lines
276 B
CoffeeScript
|
|
class NativeNotifications
|
|
constructor: ->
|
|
|
|
displayNotification: ({title, subtitle, body, tag, canReply, onActivate} = {}) =>
|
|
n = new Notification(title, {
|
|
body: subtitle
|
|
tag: tag
|
|
})
|
|
n.onclick = onActivate
|
|
|
|
module.exports = new NativeNotifications
|