Remove OS specific implementations

This commit is contained in:
Samuel Attard 2017-05-29 21:18:18 +10:00
parent 058bdfbced
commit c741b584a1
No known key found for this signature in database
GPG key ID: 273DC1869D8F13EF
11 changed files with 40 additions and 1038 deletions

View file

@ -33,8 +33,9 @@ exports.load = (appUrl) => {
body: 'Bar',
hasReply: true,
replyPlaceholder: 'foo'
});
n.on('reply', (...args) => console.log(args));
n.show();
})
n.on('reply', (...args) => console.log('reply', ...args))
n.on('click', (...args) => console.log('click', ...args))
n.show()
})
}