Much higher limit for text, ensure that links are separated properly. Fixes #1343

This commit is contained in:
Tom MacWright
2013-04-22 16:00:28 -04:00
parent 391ace0138
commit 080d2956a5

View File

@@ -10,10 +10,10 @@ iD.ui.Success = function(connection) {
var m = '';
if (changeset.comment) {
m = '"' + changeset.comment.substring(0, 20) + '" ';
m = changeset.comment.substring(0, 130);
}
var message = (m || 'Edited OSM!') +
var message = (m || 'Edited OSM!') + ' ' +
connection.changesetURL(changeset.id);
var links = body.append('div').attr('class','modal-actions cf');