Browse Source

[fix][template_oscar] make overpass-api call over https

and add better error message if ajax-call fail
Thomas Pointhuber 10 years ago
parent
commit
08f4b7f506
1 changed files with 2 additions and 2 deletions
  1. 2 2
      searx/static/oscar/js/scripts.js

+ 2 - 2
searx/static/oscar/js/scripts.js

@@ -70,7 +70,7 @@ $(document).ready(function(){
     }
     
     $(".searx_overpass_request").on( "click", function( event ) {
-        var overpass_url = "http://overpass-api.de/api/interpreter?data=";
+        var overpass_url = "https://overpass-api.de/api/interpreter?data=";
         var query_start = overpass_url + "[out:json][timeout:25];(";
         var query_end = ");out meta;";
         
@@ -142,7 +142,7 @@ $(document).ready(function(){
                     }
                 })
                 .fail(function() {
-                    alert( "could not load " );
+                    $(result_table_loadicon).html($(result_table_loadicon).html() + "<p class=\"text-muted\">could not load data!</p>");
                 })
             }
         }