Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
thijstriemstra committed Jun 3, 2018
1 parent e25e1da commit f4ad0de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/js/plugins/lamejs-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class LamejsEngine extends RecordEngine {
bitRate: this.bitRate
};

let AudioContext= window.AudioContext || window.webkitAudioContext;
let AudioContext = window.AudioContext || window.webkitAudioContext;
this.audioContext = new AudioContext();
this.audioSourceNode = this.audioContext.createMediaStreamSource(
this.inputStream);
Expand Down
2 changes: 1 addition & 1 deletion src/js/plugins/opus-recorder-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class OpusRecorderEngine extends RecordEngine {
});
this.engine.ondataavailable = this.onRecordingAvailable.bind(this);

let AudioContext= window.AudioContext || window.webkitAudioContext;
let AudioContext = window.AudioContext || window.webkitAudioContext;
this.audioContext = new AudioContext();
this.audioSourceNode = this.audioContext.createMediaStreamSource(
this.inputStream);
Expand Down
2 changes: 1 addition & 1 deletion src/js/plugins/recorderjs-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class RecorderjsEngine extends RecordEngine {
this.mediaType = mediaType;
this.debug = debug;

let AudioContext= window.AudioContext || window.webkitAudioContext;
let AudioContext = window.AudioContext || window.webkitAudioContext;
this.audioContext = new AudioContext();
this.audioSourceNode = this.audioContext.createMediaStreamSource(
this.inputStream);
Expand Down

0 comments on commit f4ad0de

Please sign in to comment.