From 211635f206f808da7a503621f15fa4ad6f473eeb Mon Sep 17 00:00:00 2001 From: Jonathan Puckey Date: Mon, 23 May 2011 04:20:11 +0200 Subject: [PATCH] Cleanup last commit. --- src/basic/Point.js | 1 + src/basic/Rectangle.js | 2 ++ src/basic/Size.js | 1 + src/item/Item.js | 1 + src/path/SegmentPoint.js | 1 + 5 files changed, 6 insertions(+) diff --git a/src/basic/Point.js b/src/basic/Point.js index 8a35986b..9329936f 100644 --- a/src/basic/Point.js +++ b/src/basic/Point.js @@ -742,6 +742,7 @@ var Point = this.Point = Base.extend({ * setting itself again on the setter that corresponds to the getter that * produced this LinkedPoint. See uses of LinkedPoint.create() * Note: This prototype is not exported. + * * @ignore */ var LinkedPoint = Point.extend({ diff --git a/src/basic/Rectangle.js b/src/basic/Rectangle.js index 9987c737..747027e7 100644 --- a/src/basic/Rectangle.js +++ b/src/basic/Rectangle.js @@ -449,6 +449,7 @@ var Rectangle = this.Rectangle = Base.extend({ * through setting itself again on the setter that corresponds to the getter * that produced this LinkedRectangle. See uses of LinkedRectangle.create() * Note: This prototype is not exported. + * * @ignore */ var LinkedRectangle = Rectangle.extend({ @@ -469,6 +470,7 @@ var LinkedRectangle = Rectangle.extend({ * Provide a faster creator for Points out of two coordinates that * does not rely on Point#initialize at all. This speeds up all math * operations a lot. + * * @ignore */ create: function(owner, setter, x, y, width, height) { diff --git a/src/basic/Size.js b/src/basic/Size.js index 772d19b8..34a92ef5 100644 --- a/src/basic/Size.js +++ b/src/basic/Size.js @@ -418,6 +418,7 @@ var Size = this.Size = Base.extend({ * setting itself again on the setter that corresponds to the getter that * produced this LinkedSize. See uses of LinkedSize.create() * Note: This prototype is not exported. + * * @ignore */ var LinkedSize = Size.extend({ diff --git a/src/item/Item.js b/src/item/Item.js index 2b470916..2b12852c 100644 --- a/src/item/Item.js +++ b/src/item/Item.js @@ -655,6 +655,7 @@ var Item = this.Item = Base.extend({ * @param flags: Array of any of the following: 'objects', 'children', * 'fill-gradients', 'fill-patterns', 'stroke-patterns', 'lines'. * Default: ['objects', 'children'] + * * @ignore */ transform: function(matrix, flags) { diff --git a/src/path/SegmentPoint.js b/src/path/SegmentPoint.js index 6973a260..0e891f9c 100644 --- a/src/path/SegmentPoint.js +++ b/src/path/SegmentPoint.js @@ -17,6 +17,7 @@ /** * An internal version of Point that notifies its segment of each change * Note: This prototype is not exported. + * * @ignore */ var SegmentPoint = Point.extend({