ellipse code example is added to docs

This commit is contained in:
Лаврёнов Антон 2014-02-25 08:30:11 +08:00
parent ae65708ed6
commit 2055e864a6
2 changed files with 9 additions and 1 deletions

View File

@ -11,6 +11,14 @@
* @param {Object} config.radius defines x and y radius
* @@ShapeParams
* @@NodeParams
* @example
* var ellipse = new Kinetic.Ellipse({<br>
* radius : {<br>
* x : 50,<br>
* y : 50<br>
* },<br>
* fill: 'red'<br>
* });
*/
Kinetic.Ellipse = function(config) {
this.___init(config);

View File

@ -13,7 +13,7 @@
* width: 100,<br>
* height: 50,<br>
* fill: 'red',<br>
* stroke: 'black'<br>
* stroke: 'black',<br>
* strokeWidth: 5<br>
* });
*/