]> git.openstreetmap.org Git - rails.git/commitdiff
Rename route request variable
authorAnton Khorev <tony29@yandex.ru>
Sat, 10 Aug 2024 03:01:35 +0000 (06:01 +0300)
committerAnton Khorev <tony29@yandex.ru>
Sat, 10 Aug 2024 03:01:35 +0000 (06:01 +0300)
It's not boolean, the comment was outdated.

app/assets/javascripts/index/directions.js

index 4e2c4a895cb89dfb3d2a8938b60c2774534603fe..f7ce2adc151f52a52202c7c129934eafe11d2c58 100644 (file)
@@ -3,7 +3,7 @@
 //= require qs/dist/qs
 
 OSM.Directions = function (map) {
-  var awaitingRoute; // true if we've asked the engine for a route and are waiting to hear back
+  var routeRequest = null; // jqXHR object of an ongoing route request or null
   var chosenEngine;
 
   var popup = L.popup({ autoPanPadding: [100, 100] });
@@ -23,7 +23,7 @@ OSM.Directions = function (map) {
   var endpointDragCallback = function (dragging) {
     if (!map.hasLayer(polyline)) return;
     if (dragging && !chosenEngine.draggable) return;
-    if (dragging && awaitingRoute) return;
+    if (dragging && routeRequest) return;
 
     getRoute(false, !dragging);
   };
@@ -201,7 +201,7 @@ OSM.Directions = function (map) {
 
   function getRoute(fitRoute, reportErrors) {
     // Cancel any route that is already in progress
-    if (awaitingRoute) awaitingRoute.abort();
+    if (routeRequest) routeRequest.abort();
 
     // go fetch geocodes for any endpoints which have not already
     // been geocoded.
@@ -235,8 +235,8 @@ OSM.Directions = function (map) {
     $("#sidebar_content").html($(".directions_form .loader_copy").html());
     map.setSidebarOverlaid(false);
 
-    awaitingRoute = chosenEngine.getRoute([o, d], function (err, route) {
-      awaitingRoute = null;
+    routeRequest = chosenEngine.getRoute([o, d], function (err, route) {
+      routeRequest = null;
 
       if (err) {
         map.removeLayer(polyline);