You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cordova.apache.org by "Andrew Grieve (JIRA)" <ji...@apache.org> on 2013/01/11 16:24:12 UTC

[jira] [Created] (CB-2206) Cordova's FileReader breaks when used with a Blob

Andrew Grieve created CB-2206:
---------------------------------

             Summary: Cordova's FileReader breaks when used with a Blob
                 Key: CB-2206
                 URL: https://issues.apache.org/jira/browse/CB-2206
             Project: Apache Cordova
          Issue Type: Bug
          Components: CordovaJS
    Affects Versions: 2.3.0
            Reporter: Andrew Grieve
            Assignee: Andrew Grieve
            Priority: Minor
             Fix For: 2.4.0


The follow code doesn't work as expected, and on iOS causes the app to crash.

    var blob = new Blob([new DataView(buf)]);
    var f = new FileReader();
    f.onload = function(e) {
      callback(e.target.result);
    };  
    f.readAsText(blob);


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira