Skip to content

Commit

Permalink
update bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
fippo committed Feb 17, 2015
1 parent 93caa73 commit 00ff339
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions example/demo.bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ for (var i = 0; i < 100; i++) {
window.requestAnimationFrame(draw);
})();

},{"../hark.js":2,"attachmediastream":5,"bows":3,"getusermedia":4}],4:[function(require,module,exports){
},{"../hark.js":2,"attachmediastream":5,"bows":4,"getusermedia":3}],3:[function(require,module,exports){
// getUserMedia helper by @HenrikJoreteg
var func = (navigator.getUserMedia ||
navigator.webkitGetUserMedia ||
Expand Down Expand Up @@ -219,7 +219,7 @@ function getMaxVolume (analyser, fftBins) {
}


var audioContextType = window.webkitAudioContext || window.AudioContext;
var audioContextType = window.AudioContext || window.webkitAudioContext;
// use a single audio context due to hardware limits
var audioContext = null;
module.exports = function(stream, options) {
Expand Down Expand Up @@ -473,7 +473,7 @@ WildEmitter.prototype.getWildcardCallbacks = function (eventName) {
return result;
};

},{}],3:[function(require,module,exports){
},{}],4:[function(require,module,exports){
(function(window) {
var logger = require('andlog'),
goldenRatio = 0.618033988749895,
Expand Down
2 changes: 1 addition & 1 deletion hark.bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function getMaxVolume (analyser, fftBins) {
}


var audioContextType = window.webkitAudioContext || window.AudioContext;
var audioContextType = window.AudioContext || window.webkitAudioContext;
// use a single audio context due to hardware limits
var audioContext = null;
module.exports = function(stream, options) {
Expand Down

0 comments on commit 00ff339

Please sign in to comment.