Mailspring/src/native-notifications.coffee
2016-02-08 18:35:23 -08:00

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