| | |
| | | }; |
| | | |
| | | // switch html/plain mode |
| | | this.toggle = function(ishtml) |
| | | this.toggle = function(ishtml, noconvert) |
| | | { |
| | | var curr, content, result, |
| | | // these non-printable chars are not removed on text2html and html2text |
| | |
| | | if (is_sig) |
| | | content = content.replace(signature.text, sig_mark); |
| | | |
| | | // convert to html |
| | | result = rcmail.plain2html(content, function(data) { |
| | | var init_editor = function(data) { |
| | | // replace signature mark with html version of the signature |
| | | if (is_sig) |
| | | data = data.replace(sig_mark, '<div id="_rc_sig">' + signature.html + '</div>'); |
| | |
| | | ref.tabindex(true); |
| | | } |
| | | }, 500); |
| | | }); |
| | | }; |
| | | |
| | | // convert to html |
| | | if (!noconvert) { |
| | | result = rcmail.plain2html(content, init_editor); |
| | | } |
| | | else { |
| | | init_editor(content); |
| | | result = true; |
| | | } |
| | | } |
| | | else if (this.editor) { |
| | | if (is_sig) { |
| | |
| | | // get html content |
| | | content = this.editor.getContent(); |
| | | |
| | | // convert html to text |
| | | result = rcmail.html2plain(content, function(data) { |
| | | var init_plaintext = function(data) { |
| | | tinymce.execCommand('mceRemoveEditor', false, ref.id); |
| | | ref.editor = null; |
| | | |
| | |
| | | data = data.replace(sig_mark, "\n" + signature.text); |
| | | |
| | | input.val(data).focus(); |
| | | }); |
| | | }; |
| | | |
| | | // convert html to text |
| | | if (!noconvert) { |
| | | result = rcmail.html2plain(content, init_plaintext); |
| | | } |
| | | else { |
| | | init_plaintext(input.val()); |
| | | result = true; |
| | | } |
| | | |
| | | // bring back current signature |
| | | if (!result && curr) |