You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by an...@apache.org on 2012/08/25 02:00:46 UTC

[13/50] [abbrv] docs commit: Fixes CB-1144 issue with find example

Fixes CB-1144 issue with find example

added options.multiple=true to make example
consistent with comment of finding all contacts with
"Bob" in name field.


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-docs/commit/ffd978db
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-docs/tree/ffd978db
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-docs/diff/ffd978db

Branch: refs/heads/master
Commit: ffd978db79eb405caf3ec018261d8423ea4e06b1
Parents: 5cc924d
Author: Becky Gibson <be...@apache.org>
Authored: Fri Aug 17 11:50:12 2012 -0400
Committer: Anis Kadri <an...@gmail.com>
Committed: Fri Aug 24 16:59:41 2012 -0700

----------------------------------------------------------------------
 docs/en/edge/cordova/contacts/contacts.find.md |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-docs/blob/ffd978db/docs/en/edge/cordova/contacts/contacts.find.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/cordova/contacts/contacts.find.md b/docs/en/edge/cordova/contacts/contacts.find.md
index 838a202..be7c423 100644
--- a/docs/en/edge/cordova/contacts/contacts.find.md
+++ b/docs/en/edge/cordova/contacts/contacts.find.md
@@ -62,7 +62,8 @@ Quick Example
 
     // find all contacts with 'Bob' in any name field
     var options = new ContactFindOptions();
-	options.filter="Bob"; 
+	options.filter="Bob";
+	options.multiple=true; 
 	var fields = ["displayName", "name"];
     navigator.contacts.find(fields, onSuccess, onError, options);