Merge pull request #4449 from kyranet/patch-2

fix: Inconsistent return in TweenManager#makeActive()
This commit is contained in:
Richard Davey 2019-04-05 17:18:23 +01:00 committed by GitHub
commit bc10276b9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -411,7 +411,7 @@ var TweenManager = new Class({
{
if (this._add.indexOf(tween) !== -1 || this._active.indexOf(tween) !== -1)
{
return;
return this;
}
var idx = this._pending.indexOf(tween);