]> git.openstreetmap.org Git - rails.git/commitdiff
Remove dead code
authorTom MacWright <tom@macwright.org>
Tue, 13 Mar 2012 08:46:29 +0000 (08:46 +0000)
committerTom Hughes <tom@compton.nu>
Tue, 13 Mar 2012 08:46:58 +0000 (08:46 +0000)
app/assets/javascripts/site.js
app/views/site/index.html.erb

index 93a5127f9ed85ba316c94cf7323505ad0e6e6d84..9a43be0d6d8b58e9fae0127e6a92bd28feafebb4 100644 (file)
@@ -142,23 +142,6 @@ function setArgs(url, args) {
    return url.replace(/\?.*$/, "") + "?" + queryitems.join("&");
 }
 
-/*
- * Called to get a CSS property for an element.
- */
-function getStyle(el, property) {
-  var style;
-
-  if (el.currentStyle) {
-    style = el.currentStyle[property];
-  } else if( window.getComputedStyle ) {
-    style = document.defaultView.getComputedStyle(el,null).getPropertyValue(property);
-  } else {
-    style = el.style[property];
-  }
-
-  return style;
-}
-
 /*
  * Called to interpolate JavaScript variables in strings using a
  * similar syntax to rails I18n string interpolation - the only
index 0c47227f8ebd420066da62691ff3ea175813a1f8..669c3c089f6d05cf26908af29d8195b6d8f75d63 100644 (file)
@@ -194,14 +194,6 @@ end
     }
   }
 
-  function getPosition() {
-    return getMapCenter();
-  }
-
-  function getZoom() {
-    return getMapZoom();
-  }
-
   function setPosition(lat, lon, zoom, min_lon, min_lat, max_lon, max_lat) {
     var centre = new OpenLayers.LonLat(lon, lat);