From 7085eeae51d7680a457c12792fa89a62d71af23f Mon Sep 17 00:00:00 2001 From: "Richard D. Worth" Date: Thu, 30 Jun 2011 21:04:16 -0400 Subject: [PATCH] Example: Stroke Bounds: Added two missing semicolons, example is broken without them. --- examples/Scripts/StrokeBounds.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Scripts/StrokeBounds.html b/examples/Scripts/StrokeBounds.html index 133de914..6b705d05 100644 --- a/examples/Scripts/StrokeBounds.html +++ b/examples/Scripts/StrokeBounds.html @@ -73,11 +73,11 @@ path.scale(1.5, new Point(300, 0)); var rect = new Path.Rectangle(path.strokeBounds); rect.strokeWidth = 0.25; - rect.strokeColor = 'black' + rect.strokeColor = 'black'; rect.fillColor = null; var rect = new Path.Rectangle(path.bounds); rect.strokeWidth = 0.25; - rect.strokeColor = 'red' + rect.strokeColor = 'red'; rect.fillColor = null; }