redmine-client/node_modules/node-notifier/example/message.js
2014-12-26 04:41:54 +01:00

14 lines
302 B
JavaScript

var notifier = require('../index');
notifier
.notify({
'message': 'Hello',
'wait': true
}, function (err, data) {
// Will also wait until notification is closed.
console.log('Waited');
console.log(err, data);
})
.on('click', function () {
console.log(arguments);
});