]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/user.js
Use double quotes consistently in javascript code
[rails.git] / app / assets / javascripts / user.js
index bdf0443056329df566e07fbc880dd8ea3153b79c..73bb2406ec2f0f680a8a685c674b6e4877b3a87e 100644 (file)
@@ -7,30 +7,30 @@ $(document).ready(function () {
       zoomControl: false
     }).addLayer(new L.OSM.Mapnik());
 
-    var position = $('html').attr('dir') === 'rtl' ? 'topleft' : 'topright';
+    var position = $("html").attr("dir") === "rtl" ? "topleft" : "topright";
 
     L.OSM.zoom({position: position})
       .addTo(map);
 
     var locate = L.control.locate({
       position: position,
-      icon: 'icon geolocate',
-      iconLoading: 'icon geolocate',
+      icon: "icon geolocate",
+      iconLoading: "icon geolocate",
       strings: {
-        title: I18n.t('javascripts.map.locate.title'),
-        popup: I18n.t('javascripts.map.locate.popup')
+        title: I18n.t("javascripts.map.locate.title"),
+        popup: I18n.t("javascripts.map.locate.popup")
       }
     }).addTo(map);
 
     var locateContainer = locate.getContainer();
 
     $(locateContainer)
-      .removeClass('leaflet-control-locate leaflet-bar')
-      .addClass('control-locate')
+      .removeClass("leaflet-control-locate leaflet-bar")
+      .addClass("control-locate")
       .children("a")
-      .attr('href', '#')
-      .removeClass('leaflet-bar-part leaflet-bar-part-single')
-      .addClass('control-button');
+      .attr("href", "#")
+      .removeClass("leaflet-bar-part leaflet-bar-part-single")
+      .addClass("control-button");
 
     if (OSM.home) {
       map.setView([OSM.home.lat, OSM.home.lon], 12);
@@ -47,14 +47,14 @@ $(document).ready(function () {
       }
 
       map.on("click", function (e) {
-        if ($('#updatehome').is(':checked')) {
+        if ($("#updatehome").is(":checked")) {
           var zoom = map.getZoom(),
               precision = OSM.zoomPrecision(zoom),
               location = e.latlng.wrap();
 
-          $('#homerow').removeClass();
-          $('#home_lat').val(location.lat.toFixed(precision));
-          $('#home_lon').val(location.lng.toFixed(precision));
+          $("#homerow").removeClass();
+          $("#home_lat").val(location.lat.toFixed(precision));
+          $("#home_lon").val(location.lng.toFixed(precision));
 
           marker.setLatLng(e.latlng);
           marker.addTo(map);
@@ -62,7 +62,7 @@ $(document).ready(function () {
       });
     } else {
       $("[data-user]").each(function () {
-        var user = $(this).data('user');
+        var user = $(this).data("user");
         if (user.lon && user.lat) {
           L.marker([user.lat, user.lon], {icon: OSM.getUserIcon(user.icon)}).addTo(map)
             .bindPopup(user.description);