From 3ac171a3045d9a80829cbdd987ab57168989cc16 Mon Sep 17 00:00:00 2001 From: Jonathan Puckey Date: Sat, 12 Nov 2011 16:45:33 +0100 Subject: [PATCH] Path#smooth() example: select path using fullySelected instead of selected, so we can see its handles. --- src/path/PathItem.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/path/PathItem.js b/src/path/PathItem.js index f559a3c8..ff29830c 100644 --- a/src/path/PathItem.js +++ b/src/path/PathItem.js @@ -43,7 +43,7 @@ var PathItem = this.PathItem = Item.extend(/** @lends PathItem# */{ * path.strokeColor = 'black'; * * // Select the path, so we can see its handles: - * path.selected = true; + * path.fullySelected = true; * * // Create a copy of the path and move it 100pt to the right: * var copy = path.clone();