From b8816a07f5e7f878291f52b4cee245a60c77fb69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Tue, 15 Feb 2011 23:10:48 +0000 Subject: [PATCH] Reformat to fit 80 chars boundary. --- src/path/Path.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/path/Path.js b/src/path/Path.js index a360944c..df375da8 100644 --- a/src/path/Path.js +++ b/src/path/Path.js @@ -30,7 +30,8 @@ Path = PathItem.extend(new function() { var path = new Path(); path.closed = true; var rectangle = Rectangle.read(arguments); - var corners = ['bottomLeft', 'topLeft', 'topRight', 'bottomRight']; + var corners = ['bottomLeft', 'topLeft', 'topRight', + 'bottomRight']; for (var i = 0; i < 4; i++) { path.add(rectangle[corners[i]]); }