]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index.js
Missed the sidebar on browse page
[rails.git] / app / assets / javascripts / index.js
index 1f68c93cb6f8ca39774c616a3993861f9f0fb2d8..cc4fc72f51701b9a500fb13e04b66f7a1f2253ee 100644 (file)
@@ -37,13 +37,7 @@ $(document).ready(function () {
 
   var layers = [
     new L.OSM.Mapnik({
-      attribution: donate,
-      code: "M",
-      keyid: "mapnik",
-      name: I18n.t("javascripts.map.base.standard")
-    }),
-    new L.OSM.Mapnik({
-      attribution: copyright,
+      attribution: copyright+" – "+donate,
       code: "M",
       keyid: "mapnik",
       name: I18n.t("javascripts.map.base.standard")
@@ -237,27 +231,14 @@ $(document).ready(function () {
   initializeNotes(map);
 
   OSM.Index = function(map) {
-    var page = {}, minimized = false;
+    var page = {}, minimized = $('#sidebar').hasClass('minimized');
 
     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");
-    };
-
-    page.minimizeSidebar = function() {
-      $("#sidebar").addClass("minimized");
-      map.invalidateSize();
-      minimized = true;
-    };
-
-    $(document).on("click", "#sidebar_content .close", page.minimizeSidebar);
-
     return page;
   };
 
@@ -273,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') {