Update to iD v2.21.0
major changes in this release: * dropped support for Internet Explorer 11 * switched authentication to OAuth 2 for further changes please refer to https://github.com/openstreetmap/iD/blob/release/CHANGELOG.md#2210
This commit is contained in:
parent
32da856c00
commit
c55d346d5f
70 changed files with 125244 additions and 160816 deletions
|
@ -7,7 +7,7 @@ document.addEventListener("DOMContentLoaded", function () {
|
|||
|
||||
if (typeof iD === "undefined" || !iD.utilDetect().support) {
|
||||
container.innerHTML = "This editor is supported " +
|
||||
"in Firefox, Chrome, Safari, Opera, Edge, and Internet Explorer 11. " +
|
||||
"in Firefox, Chrome, Safari, Opera and Edge. " +
|
||||
"Please upgrade your browser or use JOSM to edit the map.";
|
||||
container.className = "unsupported";
|
||||
} else {
|
||||
|
@ -17,11 +17,8 @@ document.addEventListener("DOMContentLoaded", function () {
|
|||
.assetMap(JSON.parse(container.dataset.assetMap))
|
||||
.locale(container.dataset.locale)
|
||||
.preauth({
|
||||
urlroot: location.protocol + "//" + location.host,
|
||||
oauth_consumer_key: container.dataset.consumerKey,
|
||||
oauth_secret: container.dataset.consumerSecret,
|
||||
oauth_token: container.dataset.token,
|
||||
oauth_token_secret: container.dataset.tokenSecret
|
||||
url: location.protocol + "//" + location.host,
|
||||
access_token: container.dataset.token
|
||||
})
|
||||
.containerNode(container)
|
||||
.init();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue