getNextEvent->getEventAfter

This commit is contained in:
Yotam Mann 2015-09-05 16:27:42 -04:00
parent 615c120688
commit 7c0318cbdf

View file

@ -217,7 +217,7 @@ define(["Tone/core/Tone", "Tone/signal/Signal", "Tone/core/Timeline"], function
* @return {Object} The next event after the given time
*/
Tone.TimelineSignal.prototype._searchAfter = function(time){
return this._events.getNextEvent(time);
return this._events.getEventAfter(time);
};
/**