X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e7d200c4a6d0904ab1e027518eca7200b0ca9a08..3f26761a26f1ebd8746db166be2d30fd9b7ff7d6:/app/assets/javascripts/index.js?ds=sidebyside diff --git a/app/assets/javascripts/index.js b/app/assets/javascripts/index.js index 238ab7f63..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") @@ -236,14 +236,9 @@ $(document).ready(function () { page.pushstate = page.popstate = function(path) { if (minimized) $("#sidebar").addClass("minimized"); map.invalidateSize(); - $("#view_tab").addClass("current"); $('#sidebar_content').load(path); }; - page.unload = function() { - $("#view_tab").removeClass("current"); - }; - return page; }; @@ -259,6 +254,8 @@ $(document).ready(function () { }; page.load = function(path, type, id) { + $("#sidebar").removeClass("minimized"); + if (OSM.STATUS === 'api_offline' || OSM.STATUS === 'database_offline') return; if (type === 'note') { @@ -306,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(); + });