Remove support for soon discontinued josm remote https endpoint
This commit is contained in:
parent
30757696bd
commit
ca36cf2826
2 changed files with 2 additions and 4 deletions
|
@ -241,9 +241,7 @@ $(document).ready(function () {
|
|||
|
||||
function remoteEditHandler(bbox, object) {
|
||||
var loaded = false,
|
||||
url = document.location.protocol === "https:" ?
|
||||
"https://127.0.0.1:8112/load_and_zoom?" :
|
||||
"http://127.0.0.1:8111/load_and_zoom?",
|
||||
url = "http://127.0.0.1:8111/load_and_zoom?",
|
||||
query = {
|
||||
left: bbox.getWest() - 0.0001,
|
||||
top: bbox.getNorth() + 0.0001,
|
||||
|
|
|
@ -413,7 +413,7 @@ class ApplicationController < ActionController::Base
|
|||
|
||||
def map_layout
|
||||
append_content_security_policy_directives(
|
||||
:child_src => %w[127.0.0.1:8111 127.0.0.1:8112],
|
||||
:child_src => %w[127.0.0.1:8111],
|
||||
:connect_src => %w[nominatim.openstreetmap.org overpass-api.de router.project-osrm.org valhalla.mapzen.com],
|
||||
:form_action => %w[render.openstreetmap.org],
|
||||
:script_src => %w[graphhopper.com open.mapquestapi.com],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue