Merge remote-tracking branch 'upstream/pull/3792'
This commit is contained in:
commit
533a10bee4
1 changed files with 8 additions and 5 deletions
|
@ -11,15 +11,18 @@ document.addEventListener("DOMContentLoaded", function () {
|
||||||
"Please upgrade your browser or use JOSM to edit the map.";
|
"Please upgrade your browser or use JOSM to edit the map.";
|
||||||
container.className = "unsupported";
|
container.className = "unsupported";
|
||||||
} else {
|
} else {
|
||||||
var id = iD.coreContext()
|
var idContext = iD.coreContext();
|
||||||
|
idContext.connection().apiConnections([]);
|
||||||
|
idContext.preauth({
|
||||||
|
url: location.protocol + "//" + location.host,
|
||||||
|
access_token: container.dataset.token
|
||||||
|
});
|
||||||
|
|
||||||
|
var id = idContext
|
||||||
.embed(true)
|
.embed(true)
|
||||||
.assetPath("iD/")
|
.assetPath("iD/")
|
||||||
.assetMap(JSON.parse(container.dataset.assetMap))
|
.assetMap(JSON.parse(container.dataset.assetMap))
|
||||||
.locale(container.dataset.locale)
|
.locale(container.dataset.locale)
|
||||||
.preauth({
|
|
||||||
url: location.protocol + "//" + location.host,
|
|
||||||
access_token: container.dataset.token
|
|
||||||
})
|
|
||||||
.containerNode(container)
|
.containerNode(container)
|
||||||
.init();
|
.init();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue