]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index.js
Update Potlatch 2 to 2.3-603-gebdfa12 build
[rails.git] / app / assets / javascripts / index.js
index 5190277c98c6927a040be94f64d6b6c17e5ef335..2a704f72464f8d697fe02f8b91bd592855b3ac46 100644 (file)
@@ -75,7 +75,10 @@ $(document).ready(function () {
 
   L.control.locate({
     position: position,
-    title: I18n.t('javascripts.map.locate.title')
+    strings: {
+      title: I18n.t('javascripts.map.locate.title'),
+      popup: I18n.t('javascripts.map.locate.popup')
+    }
   }).addTo(map);
 
   var sidebar = L.OSM.sidebar('#map-ui')
@@ -155,6 +158,20 @@ $(document).ready(function () {
     remoteEditHandler(map.getBounds());
   }
 
+  if (OSM.params().edit_help) {
+    $('#editanchor')
+      .removeAttr('title')
+      .tooltip({
+        placement: 'bottom',
+        title: I18n.t('javascripts.edit_help')
+      })
+      .tooltip('show');
+
+    $('body').one('click', function() {
+      $('#editanchor').tooltip('hide');
+    });
+  }
+
   initializeSearch(map);
   initializeExport(map);
   initializeBrowse(map, params);