Fix bug where cancelling switch from HTML to plain text didn't set editor type selector properly (#1490141)

pull/252/head
Aleksander Machniak 10 years ago
parent 1852f984c0
commit 33f8bd6918

@ -61,6 +61,7 @@ RELEASE 1.0.2
- Fix bug where contacts with no email address were listed on compose addressbook (#1489970)
- Fix images import from various vCard formats (#1489977)
- Fix sorting messages by size on servers without SORT capability (#1489981)
- Fix bug where cancelling switch from HTML to plain text didn't set editor type selector properly (#1490141)
RELEASE 1.0.1
-------------

@ -3439,6 +3439,8 @@ function rcube_webmail()
}
else if (this.html2plain(tinyMCE.get(props.id).getContent(), props.id))
tinyMCE.execCommand('mceRemoveControl', false, props.id);
else
return false;
return true;
};

Loading…
Cancel
Save