We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eafa1bb commit 5f50af4Copy full SHA for 5f50af4
src/graph_spectrum_calc.js
@@ -79,7 +79,7 @@ GraphSpectrumCalc.setOutTime = function(time) {
79
if ((time - this._analyserTimeRange.in) <= MAX_ANALYSER_LENGTH) {
80
this._analyserTimeRange.out = time;
81
} else {
82
- this._analyserTimeRange.out = analyserTimeRange.in + MAX_ANALYSER_LENGTH;
+ this._analyserTimeRange.out = this._analyserTimeRange.in + MAX_ANALYSER_LENGTH;
83
}
84
return this._analyserTimeRange.out;
85
};
0 commit comments