Add doc for powerMonitor shutdown event

This commit is contained in:
Thiago de Arruda 2017-12-21 08:01:34 -03:00 committed by Cheng Zhao
parent f0e210360f
commit 176c03fa15

View file

@ -39,3 +39,10 @@ Emitted when the system changes to AC power.
### Event: 'on-battery' _Windows_
Emitted when system changes to battery power.
### Event: 'shutdown' _Linux_
Emitted when the system is about to reboot or shut down. If the event handler
invokes `e.preventDefault()`, Electron will attempt to delay system shutdown in
order for the app to exit cleanly. If `e.preventDefault()` is called, the app
should exit as soon as possible by calling something like `app.quit()`.