mirror of
https://github.com/electron/electron.git
synced 2026-01-09 15:38:08 -05:00
docs: use optional chaining for app.dock (#46119)
docs: use optional chaining for app.dock
This commit is contained in:
@@ -9,7 +9,7 @@ The following example shows how to bounce your icon on the dock.
|
|||||||
|
|
||||||
```js
|
```js
|
||||||
const { app } = require('electron')
|
const { app } = require('electron')
|
||||||
app.dock.bounce()
|
app.dock?.bounce()
|
||||||
```
|
```
|
||||||
|
|
||||||
### Instance Methods
|
### Instance Methods
|
||||||
|
|||||||
@@ -24,9 +24,7 @@ const dockMenu = Menu.buildFromTemplate([
|
|||||||
])
|
])
|
||||||
|
|
||||||
app.whenReady().then(() => {
|
app.whenReady().then(() => {
|
||||||
if (process.platform === 'darwin') {
|
app.dock?.setMenu(dockMenu)
|
||||||
app.dock.setMenu(dockMenu)
|
|
||||||
}
|
|
||||||
}).then(createWindow)
|
}).then(createWindow)
|
||||||
|
|
||||||
app.on('window-all-closed', () => {
|
app.on('window-all-closed', () => {
|
||||||
|
|||||||
@@ -50,9 +50,7 @@ const dockMenu = Menu.buildFromTemplate([
|
|||||||
])
|
])
|
||||||
|
|
||||||
app.whenReady().then(() => {
|
app.whenReady().then(() => {
|
||||||
if (process.platform === 'darwin') {
|
app.dock?.setMenu(dockMenu)
|
||||||
app.dock.setMenu(dockMenu)
|
|
||||||
}
|
|
||||||
}).then(createWindow)
|
}).then(createWindow)
|
||||||
|
|
||||||
app.on('window-all-closed', () => {
|
app.on('window-all-closed', () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user