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

and add better error message if ajax-call fail
This commit is contained in:
Thomas Pointhuber 2014-11-20 15:31:00 +01:00
parent 075a5fe898
commit 08f4b7f506
1 changed files with 2 additions and 2 deletions

View File

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