Update changes to ko-KR/api/power-monitor.md

This commit is contained in:
arus 2016-09-25 23:48:09 +09:00
parent f13bd655a1
commit 577585df63

View file

@ -1,4 +1,4 @@
# powerMonitor
# powerMonitor
> 파워의 상태 변경을 모니터링합니다.
@ -8,10 +8,11 @@
예시:
```javascript
const {app} = require('electron');
const electron = require('electron');
const {app} = electron;
app.on('ready', () => {
require('electron').powerMonitor.on('suspend', () => {
electron.powerMonitor.on('suspend', () => {
console.log('절전모드로 진입합니다!');
});
});
@ -19,7 +20,7 @@ app.on('ready', () => {
## Events
`power-monitor` 모듈은 다음과 같은 이벤트를 가지고 있습니다:
`powerMonitor` 모듈은 다음과 같은 이벤트를 가지고 있습니다:
## Event: `suspend`