From cfad723893fdbbb53f655803ad3e59710f042b74 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 20 Mar 2015 22:23:44 -0400 Subject: [PATCH] No need to namespace changeset keys --- js/id/core/connection.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/js/id/core/connection.js b/js/id/core/connection.js index 9743fd777..3a16b19ff 100644 --- a/js/id/core/connection.js +++ b/js/id/core/connection.js @@ -243,13 +243,13 @@ iD.Connection = function() { connection.changesetTags = function(comment, imageryUsed) { var detected = iD.detect(), tags = { - created_by: 'iD ' + iD.version, - imagery_used: imageryUsed.join(';').substr(0, 255), - 'iD:host': (window.location.origin + window.location.pathname).substr(0, 255), - 'iD:locale': detected.locale, - 'iD:browser': detected.browser + ' ' + detected.version, - 'iD:platform': detected.platform - }; + created_by: 'iD ' + iD.version, + imagery_used: imageryUsed.join(';').substr(0, 255), + host: (window.location.origin + window.location.pathname).substr(0, 255), + locale: detected.locale, + browser: detected.browser + ' ' + detected.version, + platform: detected.platform + }; if (comment) { tags.comment = comment.substr(0, 255);