mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-14 10:16:26 +00:00
9 lines
154 B
JavaScript
9 lines
154 B
JavaScript
var shell = require('shell')
|
|
|
|
module.exports = {
|
|
openExternal: function (e) {
|
|
shell.openExternal(e.currentTarget.href)
|
|
e.preventDefault()
|
|
}
|
|
}
|