From 87bf9a624a4d77f6b3c02c58052a667c3aa09dce Mon Sep 17 00:00:00 2001 From: crschmidt Date: Fri, 14 Sep 2007 23:58:22 +0000 Subject: [PATCH] tim points out a silly behavior in the popups.html that I added when I turned it into an acceptance test. git-svn-id: http://svn.openlayers.org/trunk/openlayers@4308 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- examples/popups.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/popups.html b/examples/popups.html index da6bce863e..507fe5b488 100644 --- a/examples/popups.html +++ b/examples/popups.html @@ -18,8 +18,7 @@ layer = new OpenLayers.Layer.WMS( "OpenLayers WMS", "http://labs.metacarta.com/wms/vmap0", {layers: 'basic'} ); map.addLayer(layer); - layer = new OpenLayers.Layer.Google( "Google", - "http://labs.metacarta.com/wms/vmap0", {layers: 'basic'} ); + layer = new OpenLayers.Layer.Google( "Google" ); map.addLayer(layer); map.addControl(new OpenLayers.Control.LayerSwitcher());