From 7de0859a856195f78707effd3d58062ef08cc417 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Wed, 1 Jun 2011 20:21:41 +0100 Subject: [PATCH] Clean up comments. --- src/item/Item.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/item/Item.js b/src/item/Item.js index 9a43c996..d827e23d 100644 --- a/src/item/Item.js +++ b/src/item/Item.js @@ -688,7 +688,6 @@ var Item = this.Item = Base.extend({ * @param {Item} item The item to check against * @return {Boolean} {@true if it is inside the specified item} */ - // TODO: Consider naming this isInside? isDescendant: function(item) { var parent = this; while (parent = parent._parent) { @@ -705,7 +704,6 @@ var Item = this.Item = Base.extend({ * @return {Boolean} {@true if the item is an ancestor of the specified * item} */ - // TODO: Consider naming this contains? isAncestor: function(item) { return item ? item.isDescendant(this) : false; }, @@ -1023,7 +1021,7 @@ var Item = this.Item = Base.extend({ * @see Matrix#shear */ shear: function(shx, shy, center) { - // TODO: Add support for center back to Scriptographer too! + // PORT: Add support for center back to Scriptographer too! // See Matrix#scale for explanation of this: if (arguments.length < 2 || typeof sy === 'object') { center = shy;