From fe0a4cf4702917eb43f5debb7e40cd89a0659862 Mon Sep 17 00:00:00 2001 From: Richard Fairhurst Date: Wed, 17 Oct 2012 17:41:37 +0100 Subject: [PATCH] Remove control character --- js/iD/Entity.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/iD/Entity.js b/js/iD/Entity.js index 7ab0f560c..9c1f364c7 100755 --- a/js/iD/Entity.js +++ b/js/iD/Entity.js @@ -6,7 +6,7 @@ iD.Entity = function() { this._id = iD.Util.id(); this.connection = null; // The ID in OSM terms - this.id = NaN; + this.id = NaN; this.loaded = false; this.entityType = ''; this.modified = false;