X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ded28617c73090028c416e46ade69f7584536548..d1bebd08035434880a5edb92fdae8c9b24d825f9:/app/assets/javascripts/leaflet.layers.js diff --git a/app/assets/javascripts/leaflet.layers.js b/app/assets/javascripts/leaflet.layers.js index 57cd53d4d..443e47e76 100644 --- a/app/assets/javascripts/leaflet.layers.js +++ b/app/assets/javascripts/leaflet.layers.js @@ -7,10 +7,10 @@ L.OSM.layers = function(options) { var $container = $('
') .attr('class', 'control-layers'); - var link = $('') + var button = $('') .attr('class', 'control-button') .attr('href', '#') - .attr('title', 'Layers') + .attr('title', I18n.t('javascripts.map.layers.title')) .html('') .on('click', toggle) .appendTo($container); @@ -18,69 +18,22 @@ L.OSM.layers = function(options) { var $ui = $('
') .attr('class', 'layers-ui'); - $('
') - .appendTo($ui) - .append( - $('') - .html('»') - .attr('class', 'close-button') - .attr('href', '#') - .bind('click', toggle)) - .append( - $('

') + $('
') + .attr('class', 'sidebar_heading') + .appendTo($ui) + .append( + $('') + .text(I18n.t('javascripts.close')) + .attr('class', 'icon close') + .bind('click', toggle)) + .append( + $('

') .text(I18n.t('javascripts.map.layers.header'))); - if (OSM.STATUS != 'api_offline' && OSM.STATUS != 'database_offline') { - var overlaySection = $('
') - .addClass('overlay-layers') - .appendTo($ui); - - $('

') - .text(I18n.t('javascripts.map.layers.overlays')) - .appendTo(overlaySection); - - var list = $('

    ') - .appendTo(overlaySection); - - function addOverlay(layer, name) { - var item = $('
  • ') - .appendTo(list); - - var label = $('