X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b8d83738158e3efc0792ef2c66bb41e846ed28ec..d04242354150bf8bf1a587372fdae06937173a09:/app/assets/javascripts/id.js diff --git a/app/assets/javascripts/id.js b/app/assets/javascripts/id.js index 88b628e67..8c0a061dd 100644 --- a/app/assets/javascripts/id.js +++ b/app/assets/javascripts/id.js @@ -11,15 +11,20 @@ document.addEventListener("DOMContentLoaded", function () { "Please upgrade your browser or use JOSM to edit the map."; container.className = "unsupported"; } else { - var id = iD.coreContext() + var idContext = iD.coreContext(); + idContext.connection().apiConnections([]); + var url = location.protocol + "//" + location.host; + idContext.preauth({ + url: url, + apiUrl: url === "https://www.openstreetmap.org" ? "https://api.openstreetmap.org" : url, + access_token: container.dataset.token + }); + + var id = idContext .embed(true) .assetPath("iD/") .assetMap(JSON.parse(container.dataset.assetMap)) .locale(container.dataset.locale) - .preauth({ - url: location.protocol + "//" + location.host, - access_token: container.dataset.token - }) .containerNode(container) .init();