Skip to content

Commit

Permalink
fix typo - closes #1
Browse files Browse the repository at this point in the history
  • Loading branch information
Contra committed Feb 20, 2013
1 parent a3b2e14 commit ae8874e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions examples/holla.js
Original file line number Diff line number Diff line change
Expand Up @@ -3494,8 +3494,8 @@ require.register("holla/dist/holla.js", function(exports, require, module){
},
createAudioStream: function(cb) {
return holla.createStream({
video: true,
audio: false
video: false,
audio: true
}, cb);
}
};
Expand Down Expand Up @@ -3710,12 +3710,12 @@ require.register("holla/dist/RTC.js", function(exports, require, module){

URL = window.URL || window.webkitURL || window.msURL || window.oURL;

getUserMedia = getUserMedia.bind(navigator);

browser = (navigator.mozGetUserMedia ? 'firefox' : 'chrome');

supported = (PeerConnection != null) && (getUserMedia != null);

getUserMedia = getUserMedia.bind(navigator);

extract = function(str, reg) {
var match;
match = str.match(reg);
Expand Down
8 changes: 4 additions & 4 deletions holla.js
Original file line number Diff line number Diff line change
Expand Up @@ -3494,8 +3494,8 @@ require.register("holla/dist/holla.js", function(exports, require, module){
},
createAudioStream: function(cb) {
return holla.createStream({
video: true,
audio: false
video: false,
audio: true
}, cb);
}
};
Expand Down Expand Up @@ -3710,12 +3710,12 @@ require.register("holla/dist/RTC.js", function(exports, require, module){

URL = window.URL || window.webkitURL || window.msURL || window.oURL;

getUserMedia = getUserMedia.bind(navigator);

browser = (navigator.mozGetUserMedia ? 'firefox' : 'chrome');

supported = (PeerConnection != null) && (getUserMedia != null);

getUserMedia = getUserMedia.bind(navigator);

extract = function(str, reg) {
var match;
match = str.match(reg);
Expand Down
2 changes: 1 addition & 1 deletion holla.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/holla.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,6 @@ holla =

createFullStream: (cb) -> holla.createStream {video:true,audio:true}, cb
createVideoStream: (cb) -> holla.createStream {video:true,audio:false}, cb
createAudioStream: (cb) -> holla.createStream {video:true,audio:false}, cb
createAudioStream: (cb) -> holla.createStream {video:false,audio:true}, cb

module.exports = holla

0 comments on commit ae8874e

Please sign in to comment.