1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00
Files
Boostnote/lib/finder-app.js
2017-01-11 23:59:48 +09:00

11 lines
181 B
JavaScript
Executable File

const electron = require('electron')
const app = electron.app
app.on('ready', function () {
if (process.platform === 'darwin') {
app.dock.hide()
}
})
module.exports = app