]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index.js
Simplify
[rails.git] / app / assets / javascripts / index.js
index cc4fc72f51701b9a500fb13e04b66f7a1f2253ee..5cc3a25b86c291815d808b277b45f8fa60344733 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")
@@ -231,10 +231,10 @@ $(document).ready(function () {
   initializeNotes(map);
 
   OSM.Index = function(map) {
-    var page = {}, minimized = $('#sidebar').hasClass('minimized');
+    var page = {};
 
     page.pushstate = page.popstate = function(path) {
-      if (minimized) $("#sidebar").addClass("minimized");
+      $("#sidebar").addClass("minimized");
       map.invalidateSize();
       $('#sidebar_content').load(path);
     };
@@ -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();
+
 });