Reformat to fit 80 chars boundary.

This commit is contained in:
Jürg Lehni 2011-02-15 23:10:48 +00:00
parent d82eb4534c
commit b8816a07f5

View file

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