From: Tom MacWright Date: Tue, 13 Mar 2012 08:46:29 +0000 (+0000) Subject: Remove dead code X-Git-Tag: live~5754 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/d13f0b7088cd545a7281772598ab1171d2c35569 Remove dead code --- diff --git a/app/assets/javascripts/site.js b/app/assets/javascripts/site.js index 93a5127f9..9a43be0d6 100644 --- a/app/assets/javascripts/site.js +++ b/app/assets/javascripts/site.js @@ -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 diff --git a/app/views/site/index.html.erb b/app/views/site/index.html.erb index 0c47227f8..669c3c089 100644 --- a/app/views/site/index.html.erb +++ b/app/views/site/index.html.erb @@ -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);