]> git.openstreetmap.org Git - rails.git/commitdiff
Fix short links to drop the layers param for the default layer
authorTom Hughes <tom@compton.nu>
Wed, 21 Jul 2010 13:49:09 +0000 (14:49 +0100)
committerTom Hughes <tom@compton.nu>
Wed, 21 Jul 2010 13:49:09 +0000 (14:49 +0100)
public/javascripts/site.js

index 0a5aae4ad29b824f384b3af260f34d958f75c69b..0e2c5aeb7d12f0d69c5ac3a77b3c955cab1a2778 100644 (file)
@@ -107,10 +107,8 @@ function updatelinks(lon,lat,zoom,layers,minlon,minlat,maxlon,maxlat,objtype,obj
       args[objtype] = objid;
     }
 
-    // This is a hack to omit the default mapnik layer (B000FTF) from
-    // the shortlink. B000FTFT is then the "Object" layer which we get
-    // on /?{node,way,relation}=id
-    if (layers && (layers != "B000FTF") && (layers != "B000FTFT")) {
+    // This is a hack to omit the default mapnik layer from the shortlink.
+    if (layers && layers != "M") {
       args["layers"] = layers;
     }
     else {