move constructor property to prototype, fixes #189

This commit is contained in:
Chad Engler 2013-07-15 12:11:26 -07:00
parent 9dab185fe4
commit f9e2af95fb
32 changed files with 33 additions and 33 deletions

View file

@ -83,5 +83,5 @@ PIXI.Ellipse.getBounds = function()
return new PIXI.Rectangle(this.x, this.y, this.width, this.height);
}
PIXI.Ellipse.constructor = PIXI.Ellipse;
PIXI.Ellipse.prototype.constructor = PIXI.Ellipse;