From 55cd3743ba008be84ac4b37797ae70f4f1a9b880 Mon Sep 17 00:00:00 2001 From: alecpl Date: Sun, 7 Dec 2008 09:47:47 +0000 Subject: - Fix empty line before the signature in IE (#1485351) --- program/js/app.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'program') diff --git a/program/js/app.js b/program/js/app.js index 0634f1927..22d2b47f1 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -2144,14 +2144,18 @@ function rcube_webmail() if (this.env.signatures) { // Append the signature as a div within the body - var sigElem = editor.dom.get("_rc_sig"); + var sigElem = editor.dom.get('_rc_sig'); var newsig = ''; var htmlsig = true; - + if (!sigElem) { - sigElem = editor.getDoc().createElement("div"); - sigElem.setAttribute("id", "_rc_sig"); + // add empty line before signature on IE + if (bw.ie) + editor.getBody().appendChild(editor.getDoc().createElement('br')); + + sigElem = editor.getDoc().createElement('div'); + sigElem.setAttribute('id', '_rc_sig'); editor.getBody().appendChild(sigElem); } -- cgit v1.2.3