From 4ab995090202254d6a9ef01c9b5a7beee2f8e262 Mon Sep 17 00:00:00 2001 From: crschmidt Date: Tue, 19 Sep 2006 16:45:48 +0000 Subject: [PATCH] Don't need to have modifier -- just display on every click. git-svn-id: http://svn.openlayers.org/trunk/openlayers@1485 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- examples/getfeatureinfo.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/getfeatureinfo.html b/examples/getfeatureinfo.html index d25687c3a9..46751b3b55 100644 --- a/examples/getfeatureinfo.html +++ b/examples/getfeatureinfo.html @@ -1,6 +1,6 @@ - + @@ -25,7 +25,6 @@ ul, li { padding-left: 0px; margin-left: 0px; } map.addControl(new OpenLayers.Control.Permalink($('permalink'))); map.zoomToMaxExtent(); map.events.register('click', map, function (e) { - if(e.altKey) { var url = wms.getFullRequestString({ REQUEST: "GetFeatureInfo", EXCEPTIONS: "application/vnd.ogc.se_xml", @@ -38,7 +37,6 @@ ul, li { padding-left: 0px; margin-left: 0px; } HEIGHT: wms.map.size.h}); OpenLayers.loadURL(url, '', this, setHTML); Event.stop(e); - } }); function setHTML(response) { $('nodeList').innerHTML = response.responseText;