X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/aca5308bcdc5ed5d85236731b65b728a4b870a09..3f26761a26f1ebd8746db166be2d30fd9b7ff7d6:/app/assets/javascripts/index.js?ds=sidebyside diff --git a/app/assets/javascripts/index.js b/app/assets/javascripts/index.js index cc4fc72f5..1ea1d7c7f 100644 --- a/app/assets/javascripts/index.js +++ b/app/assets/javascripts/index.js @@ -37,7 +37,7 @@ $(document).ready(function () { var layers = [ new L.OSM.Mapnik({ - attribution: copyright+" – "+donate, + attribution: copyright + " ♥ " + donate, code: "M", keyid: "mapnik", name: I18n.t("javascripts.map.base.standard") @@ -303,4 +303,16 @@ $(document).ready(function () { map.getCenter().lng.toFixed(precision))); }); + function removeSidebar() { + if ($(window).width() < 721) { + $('#sidebar').addClass("minimized"); + } + } + + $(window).resize(function() { + removeSidebar(); + }); + + removeSidebar(); + });