From 2ddcc3d4d472df90e067397c34963ef169ac0bd1 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Sat, 1 Jun 2013 22:21:07 -0700 Subject: [PATCH] Fix trailing whitespace --- src/geo/LatLngBounds.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/geo/LatLngBounds.js b/src/geo/LatLngBounds.js index 761ab18c..166af803 100644 --- a/src/geo/LatLngBounds.js +++ b/src/geo/LatLngBounds.js @@ -16,7 +16,7 @@ L.LatLngBounds.prototype = { // extend the bounds to contain the given point or bounds extend: function (obj) { // (LatLng) or (LatLngBounds) if (!obj) { return this; } - + if (typeof obj[0] === 'number' || typeof obj[0] === 'string' || obj instanceof L.LatLng) { obj = L.latLng(obj); } else {