From 79af0bb1ba370bd5f194afb692e7ed59a26b02af Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Mon, 03 Nov 2008 09:26:23 -0500 Subject: [PATCH] - Add warning when switching editor mode from html to plain (#1485488) - Unified editor switching functions --- program/js/editor.js | 37 ------------------------------------- 1 files changed, 0 insertions(+), 37 deletions(-) diff --git a/program/js/editor.js b/program/js/editor.js index a9aec62..179d089 100644 --- a/program/js/editor.js +++ b/program/js/editor.js @@ -38,40 +38,3 @@ rc_client: rcube_webmail_client }); } - -// Toggle between the HTML and Plain Text editors - -function rcmail_toggle_editor(toggler) - { - var selectedEditor = toggler.value; - - // determine the currently displayed editor - var htmlFlag = document.getElementsByName('_is_html')[0]; - var isHtml = htmlFlag.value; - - if (((selectedEditor == 'plain') && (isHtml == "0")) || - ((selectedEditor == 'html') && (isHtml == "1"))) - { - return; - } - - // do the appropriate conversion - if (selectedEditor == 'html') - { - rcmail.display_spellcheck_controls(false); - var composeElement = document.getElementById('compose-body'); - var htmlText = "<pre>" + composeElement.value + "</pre>"; - composeElement.value = htmlText; - tinyMCE.execCommand('mceAddControl', true, 'compose-body'); - htmlFlag.value = "1"; - } - else - { - var thisMCE = tinyMCE.get('compose-body'); - var existingHtml = thisMCE.getContent(); - rcmail.html2plain(existingHtml, 'compose-body'); - tinyMCE.execCommand('mceRemoveControl', true, 'compose-body'); - htmlFlag.value = "0"; - rcmail.display_spellcheck_controls(true); - } - } -- Gitblit v1.9.1