Update build

This commit is contained in:
danzel
2012-07-26 16:20:06 +12:00
parent a0f4a18df8
commit fab3374e3f
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -317,8 +317,8 @@ L.MarkerClusterGroup = L.FeatureGroup.extend({
_getExpandedVisibleBounds: function () {
var map = this._map,
bounds = map.getPixelBounds(),
width = Math.abs(bounds.max.x - bounds.min.x),
height = Math.abs(bounds.max.y - bounds.min.y),
width = L.Browser.mobile ? 0 : Math.abs(bounds.max.x - bounds.min.x),
height = L.Browser.mobile ? 0 : Math.abs(bounds.max.y - bounds.min.y),
sw = map.unproject(new L.Point(bounds.min.x - width, bounds.min.y - height)),
ne = map.unproject(new L.Point(bounds.max.x + width, bounds.max.y + height));
+1 -1
View File
File diff suppressed because one or more lines are too long