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:56:42 UTC

docs commit: [CB-4644] updated file reader section headings to be more consistent with rest of docs

Updated Branches:
  refs/heads/master 4c962ee28 -> 87c6d9b80


[CB-4644] updated file reader section headings to be more consistent with rest of docs


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

Branch: refs/heads/master
Commit: 87c6d9b80394bf34f8b0b488323c9ad7c0b21fa1
Parents: 4c962ee
Author: lorinbeer <lo...@adobe.com>
Authored: Tue Sep 3 10:56:39 2013 -0700
Committer: lorinbeer <lo...@adobe.com>
Committed: Tue Sep 3 10:56:39 2013 -0700

----------------------------------------------------------------------
 docs/en/edge/cordova/file/filereader/filereader.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/87c6d9b8/docs/en/edge/cordova/file/filereader/filereader.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/cordova/file/filereader/filereader.md b/docs/en/edge/cordova/file/filereader/filereader.md
index 98371c3..8337934 100644
--- a/docs/en/edge/cordova/file/filereader/filereader.md
+++ b/docs/en/edge/cordova/file/filereader/filereader.md
@@ -70,7 +70,7 @@ string.  Event listeners receive the `loadstart`, `progress`, `load`,
 - Windows Phone 7 and 8
 - Windows 8
 
-## Read As Data URL
+## readAsDataURL
 
 __Parameters:__
 
@@ -93,7 +93,7 @@ __Parameters:__
 
     entry.file(win, fail);
 
-## Read As Text
+## readAsText
 
 __Parameters:__
 
@@ -118,7 +118,7 @@ __Parameters:__
 
     entry.file(win, fail);
 
-## Abort Quick Example
+## abort 
 
     function win(file) {
         var reader = new FileReader();
@@ -203,7 +203,7 @@ __Parameters:__
 
 - The __encoding__ parameter is not supported, and UTF8 encoding is always in effect.
 
-## Read As Binary String
+## readAsBinaryString
 
 Currently supported on iOS and Android only.
 
@@ -228,7 +228,7 @@ __Parameters:__
 
     entry.file(win, fail);
 
-## Read As Array Buffer
+## readAsArrayBuffer
 
 Currently supported on iOS and Android only.