]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index/search.js
Fix some JSHint complaints
[rails.git] / app / assets / javascripts / index / search.js
index 08d2dc96c92b178c7ee10e0d1640ff4b7347c083..a87c561d22e1570cbffa87e6e1302d43192986eb 100644 (file)
@@ -2,7 +2,7 @@
 
 OSM.Search = function(map) {
   $(".search_form input[name=query]").on("input", function(e) {
-    if ($(e.target).val() == "") {
+    if ($(e.target).val() === "") {
       $(".describe_location").fadeIn(100);
     } else {
       $(".describe_location").fadeOut(100);
@@ -68,7 +68,7 @@ OSM.Search = function(map) {
     });
   }
 
-  function showSearchResult(e) {
+  function showSearchResult() {
     var marker = $(this).data("marker");
 
     if (!marker) {
@@ -84,7 +84,7 @@ OSM.Search = function(map) {
     $(this).closest("li").addClass("selected");
   }
 
-  function hideSearchResult(e) {
+  function hideSearchResult() {
     var marker = $(this).data("marker");
 
     if (marker) {