Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsMeaga1n committed Feb 9, 2018
1 parent 0cf66c5 commit 28f834b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/js/engine/Sequencer.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Sequencer {
this.timerWorker.postMessage('start');
}
handleStop(/*event*/) {
this.timerWorker.postMessage('stop');
this.timerWorker.postMessage('stop');
setTimeout(() => {
Store.getState().webAudio.sound.stopAll(SoundOrigin.composition);
this.sixteenthPlaying = 0;
Expand All @@ -29,7 +29,7 @@ class Sequencer {

}
handlePause(/*event*/) {
this.timerWorker.postMessage('stop');
this.timerWorker.postMessage('stop');
Store.getState().webAudio.sound.stopAll(SoundOrigin.composition);
}
schedule() {
Expand Down
2 changes: 1 addition & 1 deletion src/js/instruments/PqSynth.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class PqSynthVoice {
}
}

oscillatorsConstructor(note, preset, startTime) {
oscillatorsConstructor(note, preset/*, startTime*/) {
this.oscillatorsOutput = this.context.createGain();
this.oscillators = [{}, {}, {}];
for (let i = 0; i < preset.oscillators.length; i++) {
Expand Down

0 comments on commit 28f834b

Please sign in to comment.