From 4ba3a290b888593c76f7d7221636af594724c7e1 Mon Sep 17 00:00:00 2001 From: euzuro Date: Tue, 4 Jul 2006 14:02:02 +0000 Subject: [PATCH] change these alerts so as not to confuse ourselves when grepping for alerts to remove debugging code. :-) git-svn-id: http://svn.openlayers.org/trunk/openlayers@876 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Events.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/OpenLayers/Events.js b/lib/OpenLayers/Events.js index 69d12fe6f0..ad01f0a540 100644 --- a/lib/OpenLayers/Events.js +++ b/lib/OpenLayers/Events.js @@ -91,11 +91,11 @@ OpenLayers.Events.prototype = { * methods of the Bounds object through the "this" variable. So our * callback could execute something like: * - * alert("Left: " + this.left); + * leftStr = "Left: " + this.left; * * or * - * alert("Center: " + this.getCenterLonLat()); + * centerStr = "Center: " + this.getCenterLonLat(); * */ register: function (type, obj, func) {