- Fix empty line before the signature in IE (#1485351)

release-0.6
alecpl 16 years ago
parent e1de7d623d
commit 55cd3743ba

@ -5,6 +5,7 @@ CHANGELOG RoundCube Webmail
---------- ----------
- Fix sorting of folders with more than 2 levels (#1485569) - Fix sorting of folders with more than 2 levels (#1485569)
- Fix search results page jumps in LDAP addressbook (#1485253) - Fix search results page jumps in LDAP addressbook (#1485253)
- Fix empty line before the signature in IE (#1485351)
2008/12/04 (alec) 2008/12/04 (alec)
---------- ----------

@ -2144,14 +2144,18 @@ function rcube_webmail()
if (this.env.signatures) if (this.env.signatures)
{ {
// Append the signature as a div within the body // 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 newsig = '';
var htmlsig = true; var htmlsig = true;
if (!sigElem) if (!sigElem)
{ {
sigElem = editor.getDoc().createElement("div"); // add empty line before signature on IE
sigElem.setAttribute("id", "_rc_sig"); if (bw.ie)
editor.getBody().appendChild(editor.getDoc().createElement('br'));
sigElem = editor.getDoc().createElement('div');
sigElem.setAttribute('id', '_rc_sig');
editor.getBody().appendChild(sigElem); editor.getBody().appendChild(sigElem);
} }

Loading…
Cancel
Save