Skip to content

Commit

Permalink
Remove unused argument from Spectrogram#resample (#1135)
Browse files Browse the repository at this point in the history
Fixes #1134
  • Loading branch information
glebm authored and katspaugh committed Jun 16, 2017
1 parent ab65f11 commit 1f320ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/wavesurfer.spectrogram.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ WaveSurfer.Spectrogram = {
this.wrapper.scrollLeft = e.target.scrollLeft;
},

resample: function(oldMatrix, columnsNumber) {
resample: function(oldMatrix) {
var columnsNumber = this.width;
var newMatrix = [];

Expand Down

0 comments on commit 1f320ab

Please sign in to comment.