Mailspring/src/native-notifications.coffee
2015-11-17 15:48:59 -08:00

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