summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--program/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 5233d9c9a..abe267a6d 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -7072,7 +7072,7 @@ function rcube_webmail()
if (range && range.parentElement() == obj) {
len = obj.value.length;
- normalizedValue = obj.value.replace(/\r\n/g, "\n");
+ normalizedValue = obj.value; //.replace(/\r\n/g, "\n");
// create a working TextRange that lives only in the input
textInputRange = obj.createTextRange();