You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by lo...@apache.org on 2013/09/03 19:45:02 UTC

[1/3] docs commit: [CB-4625] lower case the w3c reference to avoid match and replace

Updated Branches:
  refs/heads/master 992e91518 -> 4c962ee28


[CB-4625] lower case the w3c reference to avoid match and replace


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

Branch: refs/heads/master
Commit: 2ba0b3f7b1e20bf5a225610f5992e618e4f01da9
Parents: 992e915
Author: lorinbeer <lo...@adobe.com>
Authored: Tue Sep 3 10:16:48 2013 -0700
Committer: lorinbeer <lo...@adobe.com>
Committed: Tue Sep 3 10:16:48 2013 -0700

----------------------------------------------------------------------
 docs/en/edge/cordova/file/file.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/2ba0b3f7/docs/en/edge/cordova/file/file.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/cordova/file/file.md b/docs/en/edge/cordova/file/file.md
index 34dfd8c..ec79223 100644
--- a/docs/en/edge/cordova/file/file.md
+++ b/docs/en/edge/cordova/file/file.md
@@ -19,7 +19,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one
 
 # File
 
-> An API to read, write and navigate file system hierarchies, based on the [W3C File API](http://www.w3.org/TR/FileAPI).
+> An API to read, write and navigate file system hierarchies, based on the [w3c file api](http://www.w3.org/TR/FileAPI).
 
 ## Objects
 


[3/3] docs commit: [CB-4588] updated function parameter description to button labels as array of strings

Posted by lo...@apache.org.
[CB-4588] updated function parameter description to button labels as array of strings


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

Branch: refs/heads/master
Commit: 4c962ee28026f31ce63250ef2a5f6ff8f7fc277f
Parents: 15ee26d
Author: lorinbeer <lo...@adobe.com>
Authored: Tue Sep 3 10:45:00 2013 -0700
Committer: lorinbeer <lo...@adobe.com>
Committed: Tue Sep 3 10:45:00 2013 -0700

----------------------------------------------------------------------
 docs/en/edge/cordova/notification/notification.confirm.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/4c962ee2/docs/en/edge/cordova/notification/notification.confirm.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/cordova/notification/notification.confirm.md b/docs/en/edge/cordova/notification/notification.confirm.md
index 03c2ba8..8f6665a 100755
--- a/docs/en/edge/cordova/notification/notification.confirm.md
+++ b/docs/en/edge/cordova/notification/notification.confirm.md
@@ -29,7 +29,7 @@ Displays a customizable confirmation dialog box.
 
 - __title__: Dialog title. _(String)_ (Optional, defaults to `Confirm`)
 
-- __buttonLabels__: Comma-separated string specifying button labels. _(String)_ (Optional, defaults to `OK,Cancel`)
+- __buttonLabels__: Array of strings specifying button labels. _(Array)_  (Optional, defaults to `OK,Cancel`)
 
 ## Description
 


[2/3] docs commit: [CB-4588] updated button labels example code to use array syntax, from deprecated comma separated string syntax

Posted by lo...@apache.org.
[CB-4588] updated button labels example code to use array syntax, from deprecated comma separated string syntax


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

Branch: refs/heads/master
Commit: 15ee26ddf96337a2908cc48f6537da122c3dadce
Parents: 2ba0b3f
Author: lorinbeer <lo...@adobe.com>
Authored: Tue Sep 3 10:38:40 2013 -0700
Committer: lorinbeer <lo...@adobe.com>
Committed: Tue Sep 3 10:38:40 2013 -0700

----------------------------------------------------------------------
 docs/en/edge/cordova/notification/notification.confirm.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/15ee26dd/docs/en/edge/cordova/notification/notification.confirm.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/cordova/notification/notification.confirm.md b/docs/en/edge/cordova/notification/notification.confirm.md
index f7d19be..03c2ba8 100755
--- a/docs/en/edge/cordova/notification/notification.confirm.md
+++ b/docs/en/edge/cordova/notification/notification.confirm.md
@@ -68,7 +68,7 @@ indexing, so the value is `1`, `2`, `3`, etc.
             'You are the winner!', // message
              onConfirm,            // callback to invoke with index of button pressed
             'Game Over',           // title
-            'Restart,Exit'         // buttonLabels
+            ['Restart','Exit']         // buttonLabels
         );
     }
 
@@ -104,7 +104,7 @@ indexing, so the value is `1`, `2`, `3`, etc.
                 'You are the winner!', // message
                  onConfirm,            // callback to invoke with index of button pressed
                 'Game Over',           // title
-                'Restart,Exit'         // buttonLabels
+                ['Restart','Exit']         // buttonLabels
             );
         }