Clean up forgotten @lends statements.

This commit is contained in:
Jürg Lehni 2011-06-22 23:58:50 +01:00
parent 7cd749e63d
commit 4a344c8fad
5 changed files with 5 additions and 15 deletions

View file

@ -555,9 +555,7 @@ var Matrix = this.Matrix = Base.extend(/** @lends Matrix# */{
return this;
},
statics: {
/** @lends Matrix */
statics: /** @lends Matrix */{
// See Point.create()
create: function(m00, m10, m01, m11, m02, m12) {
return new Matrix(Matrix.dont).set(m00, m10, m01, m11, m02, m12);

View file

@ -751,9 +751,7 @@ var Point = this.Point = Base.extend(/** @lends Point# */{
* @return {Boolean} {@true the point is selected}
*/
statics: {
/** @lends Point */
statics: /** @lends Point */{
/**
* Provide a faster creator for Points out of two coordinates that
* does not rely on Point#initialize at all. This speeds up all math

View file

@ -356,9 +356,7 @@ var Size = this.Size = Base.extend(/** @lends Size# */{
return isNaN(this.width) || isNaN(this.height);
},
statics: {
/** @lends Size */
statics: /** @lends Size */{
// See Point.create()
create: function(width, height) {
return new Size(Size.dont).set(width, height);

View file

@ -24,9 +24,7 @@ Path.inject({ statics: new function() {
new Segment([0.5, 1], [kappa, 0 ], [-kappa, 0])
];
return {
/** @lends Path */
return /** @lends Path */{
/**
* {@grouptitle Shaped Paths}
* Creates a Path Item with two anchor points forming a line.

View file

@ -133,9 +133,7 @@ var Key = this.Key = new function() {
}
});
return {
/** @lends Key */
return /** @lends Key */{
modifiers: modifiers,
/**