Example: Stroke Bounds: Added two missing semicolons, example is broken without them.

This commit is contained in:
Richard D. Worth 2011-06-30 21:04:16 -04:00
parent 7622b3bdaf
commit 7085eeae51

View file

@ -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;
}