fix switching between HTML/plain composing (#1484752)

release-0.6
svncommit 17 years ago
parent 2f93b031b2
commit 66f12a4539

@ -3,6 +3,7 @@ CHANGELOG RoundCube Webmail
2008/02/12 (estadtherr) 2008/02/12 (estadtherr)
---------- ----------
- fix switching between HTML/plain composing (#1484752)
- condense TinyMCE toolbar down to one line, removing table buttons (#1484747) - condense TinyMCE toolbar down to one line, removing table buttons (#1484747)
- fix image removal in message display when message HTML includes JS event handlers - fix image removal in message display when message HTML includes JS event handlers

@ -63,9 +63,10 @@ function rcmail_toggle_editor(toggler)
// determine the currently displayed editor // determine the currently displayed editor
var htmlFlag = document.getElementsByName('_is_html')[0]; var htmlFlag = document.getElementsByName('_is_html')[0];
var currentEditor = htmlFlag.value; var isHtml = htmlFlag.value;
if (selectedEditor == currentEditor) if (((selectedEditor == 'plain') && (isHtml == "0")) ||
((selectedEditor == 'html') && (isHtml == "1")))
{ {
return; return;
} }

Loading…
Cancel
Save