Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
polymer-file: correcting doc examples
Browse files Browse the repository at this point in the history
  • Loading branch information
ebidel committed Oct 20, 2013
1 parent 9977ccd commit 034f5a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions polymer-file/polymer-file.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
* <polymer-file id="file" readas="dataurl"
* on-polymer-result="handleResult"></polymer-file>
* ...
* this.$.file.blob = new Blob(['abc', {type: 'text/plain'}]);
* this.$.file.blob = new Blob(['abc'], {type: 'text/plain'});
* this.$.file.read();
*
* ---
*
* <polymer-file id="file" readas="arraybuffer" auto
* result="{{result}}"></polymer-file>
* ...
* this.$.file.blob = new Blob(['abc', {type: 'text/plain'}]);
* this.$.file.blob = new Blob(['abc'], {type: 'text/plain'});
*
* @class polymer-file
*/
Expand Down

0 comments on commit 034f5a9

Please sign in to comment.