Browse Source

Update comments to reflect changed macOS name (#237)

main
Hum4n01d 7 years ago
committed by Charles Kerr
parent
commit
73efe7de8a
  1. 4
      main.js

4
main.js

@ -31,7 +31,7 @@ app.on('ready', createWindow)
// Quit when all windows are closed. // Quit when all windows are closed.
app.on('window-all-closed', function () { app.on('window-all-closed', function () {
// On OS X it is common for applications and their menu bar
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q // to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') { if (process.platform !== 'darwin') {
app.quit() app.quit()
@ -39,7 +39,7 @@ app.on('window-all-closed', function () {
}) })
app.on('activate', function () { app.on('activate', function () {
// On OS X it's common to re-create a window in the app when the
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open. // dock icon is clicked and there are no other windows open.
if (mainWindow === null) { if (mainWindow === null) {
createWindow() createWindow()

Loading…
Cancel
Save