[ https://issues.apache.org/jira/browse/CB-3286?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Bas Bosman resolved CB-3286. ---------------------------- Resolution: Not A Problem With the release of 3.4.0 the plugin docs were moved to the individual plugin repositories. Furthermore, the docs there now point at the W3C docs for the HTML5 Filesystem API as well as an HTML5 Rocks' FileSystem article. As a result, this issue no longer applies. > FileReader docs incorrect (for failure callbacks) > ------------------------------------------------- > > Key: CB-3286 > URL: https://issues.apache.org/jira/browse/CB-3286 > Project: Apache Cordova > Issue Type: Bug > Components: Docs, Plugin File > Reporter: Shazron Abdullah > Assignee: Michael Brooks > > See: http://docs.cordova.io/en/2.6.0/cordova_file_file.md.html#FileReader > Notice there are two Quick Examples with this code, which will throw an > exception: > {code} > var fail = function(evt) { > console.log(error.code); > }; > {code} > *Expected:* > {code} > var fail = function(evt) { > console.log(evt.target); // evt.target is the FileReader object > }; > {code} > *Actual:* > {code} > var fail = function(evt) { > console.log(error.code); > }; > {code} -- This message was sent by Atlassian JIRA (v6.1.5#6160)