Fix trailing whitespace

This commit is contained in:
John Firebaugh 2013-06-01 22:21:07 -07:00
parent 01bede20d1
commit 2ddcc3d4d4

View File

@ -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 {