From 263ff167825c78079f07fdff262948d280e67aea Mon Sep 17 00:00:00 2001 From: euzuro Date: Fri, 15 Sep 2006 20:00:41 +0000 Subject: [PATCH] coding standards -- spacing git-svn-id: http://svn.openlayers.org/trunk/openlayers@1476 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Control/MouseDefaults.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/OpenLayers/Control/MouseDefaults.js b/lib/OpenLayers/Control/MouseDefaults.js index 9f2b6e65cc..7dbacbc95e 100644 --- a/lib/OpenLayers/Control/MouseDefaults.js +++ b/lib/OpenLayers/Control/MouseDefaults.js @@ -141,12 +141,12 @@ OpenLayers.Control.MouseDefaults.prototype = * @param {Event} evt */ defaultMouseOut: function (evt) { - if (this.mouseDragStart != null - && OpenLayers.Util.mouseLeft(evt, this.map.div)) { - if (this.zoomBox) { - this.removeZoomBox(); - } - this.mouseDragStart = null; + if (this.mouseDragStart != null && + OpenLayers.Util.mouseLeft(evt, this.map.div)) { + if (this.zoomBox) { + this.removeZoomBox(); + } + this.mouseDragStart = null; } },