clear default connections when using preauth

This commit is contained in:
Martin Raifer 2022-11-14 12:32:56 +01:00
parent cdee36bbed
commit a3b5c85497
No known key found for this signature in database
GPG key ID: 3CD561F7B1C461BD

View file

@ -11,15 +11,18 @@ 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([]);
idContext.preauth({
url: location.protocol + "//" + location.host,
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();