]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index.js
Fix mobile menu and reduced sidebar height
[rails.git] / app / assets / javascripts / index.js
index cc4fc72f51701b9a500fb13e04b66f7a1f2253ee..1ea1d7c7f8c70060706e5ffc470279972f1a62b8 100644 (file)
@@ -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();
+
 });