fixed dep and doc

This commit is contained in:
Yotam Mann 2014-07-20 18:15:17 -04:00
parent 10e2acdea9
commit d91f177fb5

View file

@ -1,4 +1,4 @@
define(["Tone/core/Tone", "Tone/signal/Threshold"], function(Tone){
define(["Tone/core/Tone", "Tone/signal/Threshold", "Tone/signal/Add"], function(Tone){
/**
* @class Output 1 if the signal is greater than the value, otherwise outputs 0
@ -15,7 +15,7 @@ define(["Tone/core/Tone", "Tone/signal/Threshold"], function(Tone){
this._gt = this.context.createWaveShaper();
/**
* @type {WaveShaperNode}
* @type {Tone.Threshold}
* @private
*/
this._thresh = new Tone.Threshold(0.001);