fixed: space escape was missed for rich text pasting

This commit is contained in:
daboe01
2016-09-28 17:31:39 +02:00
parent 4befe17cab
commit dafa6e0310
+1
View File
@@ -2730,6 +2730,7 @@ var _CPCopyPlaceholder = '-';
[self _replaceEveryOccurenceOfRegularExpression:/&lt;/i withString:'<'];
[self _replaceEveryOccurenceOfRegularExpression:/&gt;/i withString:'>'];
[self _replaceEveryOccurenceOfRegularExpression:/&amp;/i withString:'&'];
[self _replaceEveryOccurenceOfRegularExpression:/&nbsp;/i withString:' '];
return self;
}