Merge pull request #2990 from johnfn/patch-1

Fix typo in Color
This commit is contained in:
Richard Davey 2017-04-20 12:47:08 +01:00 committed by GitHub
commit e631c2031b

View file

@ -25,7 +25,7 @@ var Color = function (red, green, blue, alpha)
this.setTo(red, green, blue, alpha);
};
Color.prototype.contrusctor = Color;
Color.prototype.constructor = Color;
Color.prototype = {