]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index.js
Query options presentation
[rails.git] / app / assets / javascripts / index.js
index 74ec0582395818762d48a7390854d3ba306297ab..638be0dcab18ca614b3bcdab455c07eafb65dea1 100644 (file)
@@ -349,15 +349,15 @@ $(document).ready(function () {
 
   $(".get_directions").on("click",function(e) {
        e.preventDefault();
-       $(".query_wrapper.search").hide();
-       $(".query_wrapper.routing").show();
+       $(".search").hide();
+       $(".routing").show();
        $(".query_wrapper.routing [name=route_from]").focus();
   });
 
   $(".close_directions").on("click",function(e) {
        e.preventDefault();
-       $(".query_wrapper.search").show();
-       $(".query_wrapper.routing").hide();
+       $(".search").show();
+       $(".routing").hide();
        $(".query_wrapper.search [name=query]").focus();
   });