]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index/search.js
Make sure the hash updates properly on browse pages
[rails.git] / app / assets / javascripts / index / search.js
index 3892d01a09939cc5c61f475ba88d45f3adbf6771..81b96635b5bf62af654911bf7d5fc8f5e35bc429 100644 (file)
@@ -1,11 +1,12 @@
 OSM.Search = function(map) {
   $(".search_form input[name=query]")
-    .on("focus", function() {
-      $(".describe_location").fadeOut(100);
+    .on("input", function(e) {
+      if ($(e.target).val() == "") {
+        $(".describe_location").fadeIn(100);
+      } else {
+        $(".describe_location").fadeOut(100);
+      }
     })
-    .on("blur", function() {
-      $(".describe_location").fadeIn(100);
-    });
 
   $("#sidebar_content")
     .on("click", ".search_more a", clickSearchMore)
@@ -80,6 +81,7 @@ OSM.Search = function(map) {
     map.removeLayer(marker);
     map.removeObject();
     $(".search_form input[name=query]").val("");
+    $(".describe_location").fadeIn(100);
   };
 
   return page;