Merge pull request #7608 from nabeelomer/master

Add further information to online-offline event documentation
This commit is contained in:
Kevin Sawicki 2016-10-13 14:17:07 -07:00 коммит произвёл GitHub
Родитель 902a8c57bd 4f57b685bd
Коммит 9367c764be
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -78,3 +78,13 @@ _online-status.html_
</body>
</html>
```
**NOTE:** If Electron is not able to connect to a local area network (LAN) or
a router, it is considered offline; all other conditions return `true`.
So while you can assume that Electron is offline when `navigator.onLine`
returns a `false` value, you cannot assume that a `true` value necessarily
means that Electron can access the internet. You could be getting false
positives, such as in cases where the computer is running a virtualization
software that has virtual ethernet adapters that are always "connected."
Therefore, if you really want to determine the internet access status of Electron,
you should develop additional means for checking.