Skip to content

Commit

Permalink
updating documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
sb2702 committed Jun 18, 2015
1 parent f03895c commit c2e9de0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ A simplified audio Recorder for HTML5, which uses the WebAudio API to export mic
#### Constructor


- ** Basic / Async Construction ** - The recorder object is instatiated asynchronously as shown below. Calling the recorder function will ask the client for access to the device's microphone. Once the client agrees, the recorder object
** Basic / Async Construction ** The recorder object is instatiated asynchronously as shown below. Calling the recorder function will ask the client for access to the device's microphone. Once the client agrees, the recorder object


Recorder.new(function(recorder){
// Create a recorder object (this will ask browser for microphone access)
Recorder.new(function(recorder){
// Create a recorder object (this will ask browser for microphone access)

});
});


- ** From Media Source / Sync Construction ** - The recorder object can be instatiated synchronously if you want to specify the media source manually.
** From Media Source / Sync Construction ** The recorder object can be instatiated synchronously if you want to specify the media source manually.


var recorder = Recorder.fromSource(source);
Expand Down

0 comments on commit c2e9de0

Please sign in to comment.