online-offline-events.md translated to pt-BR
This commit is contained in:
parent
b6cfa6f967
commit
0cd1195eea
1 changed files with 8 additions and 7 deletions
|
@ -1,7 +1,8 @@
|
||||||
# Online/Offline Event Detection
|
# Online/Offline Event Detection
|
||||||
|
|
||||||
Online and offline event detection can be implemented in the renderer process
|
Os eventos de detecão Online e Offile podem ser implementados no processo
|
||||||
using standard HTML5 APIs, as shown in the following example.
|
de renderização utilizando a API padrão do HTML, como é mostrado no exemplo
|
||||||
|
a seguir.
|
||||||
|
|
||||||
_main.js_
|
_main.js_
|
||||||
|
|
||||||
|
@ -36,11 +37,11 @@ _online-status.html_
|
||||||
</html>
|
</html>
|
||||||
```
|
```
|
||||||
|
|
||||||
There may be instances where you want to respond to these events in the
|
Pode haver casos onde você também deseja responder a estes eventos no processo principal.
|
||||||
main process as well. The main process however does not have a
|
Mas o processo principal não consegue detectar esses eventos diretamente, pois não possui
|
||||||
`navigator` object and thus cannot detect these events directly. Using
|
um objeto `navigator`. Utilizando a ferramentas para comunicação entre processos, os eventos
|
||||||
Electron's inter-process communication utilities, the events can be forwarded
|
podem ser direcionados para o processo principal e manipulados quando necessário. Você
|
||||||
to the main process and handled as needed, as shown in the following example.
|
pode ser isto no exemplo abaixo.
|
||||||
|
|
||||||
_main.js_
|
_main.js_
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue