logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 91384c1f31667d249880c679a6197af956ead618
parent: a5fc08c3692e4b86e08a8d7fb2cfafb18500882b
Author: Adam Tauber <asciimoo@gmail.com>
Date:   Thu, 20 Nov 2014 15:49:31 +0100

Merge pull request #130 from pointhi/template_oscar_fix

[fix][template_oscar] make overpass-api call over https and add better error-message

Diffstat:

Msearx/static/oscar/js/scripts.js4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/searx/static/oscar/js/scripts.js b/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>"); }) } }