From 8aa2e7f29c6435533f00c6e2587d3756bc9b60ca Mon Sep 17 00:00:00 2001 From: rolux Date: Fri, 25 May 2012 09:32:49 +0200 Subject: [PATCH] typo --- source/Ox/js/Geo.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/Ox/js/Geo.js b/source/Ox/js/Geo.js index fa1a9217..2ff65d2e 100644 --- a/source/Ox/js/Geo.js +++ b/source/Ox/js/Geo.js @@ -266,10 +266,10 @@ Ox.forEach(areas[0], function(area0) { ret = contains(area0, area1); // Break if the outer part contains the inner part - ret && Ox.Break()(); + ret && Ox.Break(); }); // Break if no outer part contains the inner part - !ret && Ox.Break()(); + !ret && Ox.Break(); }); return ret; }; @@ -327,7 +327,7 @@ : Ox.joinAreas(intersections); } if (ret === null) { - Ox.Break()(); + Ox.Break(); } else { ret = splitArea(ret); } @@ -378,7 +378,7 @@ Ox.forEach(gaps, function(gap, i) { if (Ox.containsArea(gap, area)) { ret = i; - Ox.Break()(); + Ox.Break(); } }); return ret;