From f7b0fb6893f0ed0518c18654a9e811f525d37193 Mon Sep 17 00:00:00 2001 From: rolux Date: Tue, 19 Jun 2012 18:01:48 +0200 Subject: [PATCH] typo --- source/Ox/js/Array.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/Ox/js/Array.js b/source/Ox/js/Array.js index 2fa4d1b0..7c92a2fa 100644 --- a/source/Ox/js/Array.js +++ b/source/Ox/js/Array.js @@ -231,10 +231,10 @@ Ox.api = function(items, options) { east: 180 } : result.data.items.reduce(function(prev, curr) { return { - south: Ox.min(prev.south, curr.south), - west: Ox.min(prev.west, curr.west), - north: Ox.max(prev.north, curr.north), - east: Ox.max(prev.east. curr.east) + south: Math.min(prev.south, curr.south), + west: Math.min(prev.west, curr.west), + north: Math.max(prev.north, curr.north), + east: Math.max(prev.east. curr.east) }; }, { south: Ox.MAX_LATITUDE,