mirror of
https://github.com/electron/electron.git
synced 2026-05-02 03:00:22 -04:00
Remove OS specific implementations
This commit is contained in:
@@ -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()
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user