Consecutive spaces

Change-Id: I3f51ce0a2ee0a78e56c55de94bd45796b400680d
This commit is contained in:
Christian Williams 2012-06-06 16:29:02 -07:00
parent f34b41fe3f
commit 77d5cae575

View file

@ -252,6 +252,9 @@ ve.ce.TextNode.prototype.getHtml = function() {
}
out += closeAnnotations( close );
// Mulitple spaces should alternate spaces and  
out = out.replace(/ /g, '  ');
return out;
};