From 6869d768a149c7b714f3b2904cbff6afc0f2c8af Mon Sep 17 00:00:00 2001 From: guglie Date: Fri, 27 Jun 2014 11:19:18 -0400 Subject: [PATCH] Fixed docs for online/offline event being backwards github: close apache/cordova-docs#213 --- doc/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/index.md b/doc/index.md index 8c48ffe..ebae403 100644 --- a/doc/index.md +++ b/doc/index.md @@ -128,8 +128,7 @@ not connected to the Internet. The `offline` event fires when a previously connected device loses a network connection so that an application can no longer access the Internet. It relies on the same information as the Connection API, -and fires when the `connection.type` changes from `NONE` to any other -value. +and fires when the value of `connection.type` becomes `NONE`. Applications typically should use `document.addEventListener` to attach an event listener once the `deviceready` event fires. @@ -166,8 +165,9 @@ becomes connected to the Internet. The `online` event fires when a previously unconnected device receives a network connection to allow an application access to the Internet. -It relies on the same information as the Connection API, and fires -when the value of `connection.type` becomes `NONE`. +It relies on the same information as the Connection API, +and fires when the `connection.type` changes from `NONE` to any other +value. Applications typically should use `document.addEventListener` to attach an event listener once the `deviceready` event fires.