Aleksander Machniak
2014-11-11 33f8bd69180567f82c1c0f0773beff01e65ec688
Fix bug where cancelling switch from HTML to plain text didn't set editor type selector properly (#1490141)
2 files modified
3 ■■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/js/app.js 2 ●●●●● patch | view | raw | blame | history
CHANGELOG
@@ -61,6 +61,7 @@
- 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
-------------
program/js/app.js
@@ -3439,6 +3439,8 @@
    }
    else if (this.html2plain(tinyMCE.get(props.id).getContent(), props.id))
      tinyMCE.execCommand('mceRemoveControl', false, props.id);
    else
      return false;
    return true;
  };