Similar to this thread which has been fixed, my problem appears in Chrome when the content area style is set in OnClientLoad.
Open notepad and create a document as follows
Line 1
Line 2
Line 4
Set the font programatically within OnClientLoad (we don't want to set it in the .css as we would like the font to be customizable per-user).
function OnClientLoad(editor) {
var style = editor.get_contentArea().style;
style.fontFamily = "Tahoma";
}
Paste the text into the editor and the line breaks are doubled.
Open notepad and create a document as follows
Line 1
Line 2
Line 4
Set the font programatically within OnClientLoad (we don't want to set it in the .css as we would like the font to be customizable per-user).
function OnClientLoad(editor) {
var style = editor.get_contentArea().style;
style.fontFamily = "Tahoma";
}
Paste the text into the editor and the line breaks are doubled.