You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mm...@apache.org on 2014/05/05 18:10:29 UTC

[42/50] [abbrv] git commit: Windows 8 - added some more #Quirks info

Windows 8 - added some more #Quirks info


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts/commit/6ed8b906
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts/tree/6ed8b906
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts/diff/6ed8b906

Branch: refs/heads/cdvtest
Commit: 6ed8b906b78a445e0521d416fbc07d88987a0745
Parents: a971104
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Tue Mar 18 13:41:04 2014 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Tue Mar 18 13:41:04 2014 -0700

----------------------------------------------------------------------
 doc/index.md | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts/blob/6ed8b906/doc/index.md
----------------------------------------------------------------------
diff --git a/doc/index.md b/doc/index.md
index ea6a643..2f41254 100644
--- a/doc/index.md
+++ b/doc/index.md
@@ -89,6 +89,9 @@ database, for which you need to invoke the `Contact.save` method.
 - Firefox OS
 - iOS
 - Windows Phone 7 and 8
+- Windows 8 ( Note: Windows 8 Contacts are readonly via the Cordova API
+Contacts are not queryable/searchable, you should inform the user to pick a contact as a call to contacts.find will open the 'People' app where the user must choose a contact.
+Any contacts returned are readonly, so your application cannot modify them. )
 
 ### Example
 
@@ -124,9 +127,9 @@ _any_ of the specified fields, the contact is returned.
 
 - __contactFindOptions__: Search options to filter navigator.contacts. [Optional] Keys include:
 
-    - __filter__: The search string used to find navigator.contacts. _(DOMString)_ (Default: `""`)
+- __filter__: The search string used to find navigator.contacts. _(DOMString)_ (Default: `""`)
 
-    - __multiple__: Determines if the find operation returns multiple navigator.contacts. _(Boolean)_ (Default: `false`)
+- __multiple__: Determines if the find operation returns multiple navigator.contacts. _(Boolean)_ (Default: `false`)
 
 ### Supported Platforms
 
@@ -135,7 +138,7 @@ _any_ of the specified fields, the contact is returned.
 - Firefox OS
 - iOS
 - Windows Phone 7 and 8
-- Windows 8 ( read-only support, search requires user interaction, contactFields are ignored, only contactFindOptions.multiple is used )
+- Windows 8 ( read-only support, search requires user interaction, contactFields are ignored, only contactFindOptions.multiple is used to enable the user to select 1 or many contacts. )
 
 ### Example
 
@@ -213,7 +216,6 @@ for details.
 - Firefox OS
 - iOS
 - Windows Phone 7 and 8
-- Windows 8
 
 ### Save Example