Skip to content

Commit

Permalink
build latest
Browse files Browse the repository at this point in the history
  • Loading branch information
Xander Dumaine committed Jul 16, 2018
1 parent 00be304 commit 13a7eb2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 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":4,"bows":5,"getusermedia":3}],3:[function(require,module,exports){
},{"../hark.js":2,"attachmediastream":5,"bows":3,"getusermedia":4}],4:[function(require,module,exports){
// getUserMedia helper by @HenrikJoreteg
var func = (navigator.getUserMedia ||
navigator.webkitGetUserMedia ||
Expand Down Expand Up @@ -161,7 +161,7 @@ module.exports = function (constraints, cb) {
});
};

},{}],4:[function(require,module,exports){
},{}],5:[function(require,module,exports){
module.exports = function (stream, el, options) {
var URL = window.URL;
var opts = {
Expand Down Expand Up @@ -271,10 +271,10 @@ module.exports = function(stream, options) {
harker.speaking = false;

harker.suspend = function() {
audioContext.suspend();
return audioContext.suspend();
}
harker.resume = function() {
audioContext.resume();
return audioContext.resume();
}
Object.defineProperty(harker, 'state', { get: function() {
return audioContext.state;
Expand Down Expand Up @@ -506,7 +506,7 @@ WildEmitter.mixin = function (constructor) {

WildEmitter.mixin(WildEmitter);

},{}],5:[function(require,module,exports){
},{}],3:[function(require,module,exports){
(function(window) {
var logger = require('andlog'),
goldenRatio = 0.618033988749895,
Expand Down
4 changes: 2 additions & 2 deletions hark.bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ module.exports = function(stream, options) {
harker.speaking = false;

harker.suspend = function() {
audioContext.suspend();
return audioContext.suspend();
}
harker.resume = function() {
audioContext.resume();
return audioContext.resume();
}
Object.defineProperty(harker, 'state', { get: function() {
return audioContext.state;
Expand Down

0 comments on commit 13a7eb2

Please sign in to comment.