Skip to content

Commit

Permalink
[e] (0) typos in example
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@6259 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jun 21, 2011
1 parent 0ab1be3 commit 9dc9c74
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions complete.html
Expand Up @@ -75279,9 +75279,9 @@ <h3 id=stream-api><span class=secno>9.3 </span>Stream API</h3>
function msgStop() {
report('Creating file...');
stopBtn.disabled = true;
stream.onended = null;
stream.stop();
stream.getRecordedData(msgSave);
msgStream.onended = null;
msgStream.stop();
msgStream.getRecordedData(msgSave);
}
function msgSave(blob) {
report('Uploading file...');
Expand All @@ -75297,7 +75297,7 @@ <h3 id=stream-api><span class=secno>9.3 </span>Stream API</h3>
recBtn.disabled = false;
};
}
funciton noStream() {
function noStream() {
report('Could not obtain access to your microphone. To try again, press the &#9899; button.');
recBtn.disabled = false;
}
Expand Down
8 changes: 4 additions & 4 deletions index
Expand Up @@ -75177,9 +75177,9 @@ interface <dfn id=blobcallback>BlobCallback</dfn> {
function msgStop() {
report('Creating file...');
stopBtn.disabled = true;
stream.onended = null;
stream.stop();
stream.getRecordedData(msgSave);
msgStream.onended = null;
msgStream.stop();
msgStream.getRecordedData(msgSave);
}
function msgSave(blob) {
report('Uploading file...');
Expand All @@ -75195,7 +75195,7 @@ interface <dfn id=blobcallback>BlobCallback</dfn> {
recBtn.disabled = false;
};
}
funciton noStream() {
function noStream() {
report('Could not obtain access to your microphone. To try again, press the &#9899; button.');
recBtn.disabled = false;
}
Expand Down
8 changes: 4 additions & 4 deletions source
Expand Up @@ -85960,9 +85960,9 @@ interface <dfn>BlobCallback</dfn> {
function msgStop() {
report('Creating file...');
stopBtn.disabled = true;
stream.onended = null;
stream.stop();
stream.getRecordedData(msgSave);
msgStream.onended = null;
msgStream.stop();
msgStream.getRecordedData(msgSave);
}
function msgSave(blob) {
report('Uploading file...');
Expand All @@ -85978,7 +85978,7 @@ interface <dfn>BlobCallback</dfn> {
recBtn.disabled = false;
};
}
funciton noStream() {
function noStream() {
report('Could not obtain access to your microphone. To try again, press the &#x26AB; button.');
recBtn.disabled = false;
}
Expand Down

0 comments on commit 9dc9c74

Please sign in to comment.