logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git
commit: 08f4b7f5062ad75299797c71ec23eaa4e7bf706f
parent 075a5fe8985dcd3e675e7249755ab211da7a5ce4
Author: Thomas Pointhuber <thomas.pointhuber@gmx.at>
Date:   Thu, 20 Nov 2014 15:31:00 +0100

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

and add better error message if ajax-call fail

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>"); }) } }