(js) Fix display of CC/BCC fields in msg editor

pull/203/head
Francis Lachapelle 2016-03-15 09:54:15 -04:00
parent 6d18db5499
commit 0af364d076
2 changed files with 5 additions and 4 deletions

5
NEWS
View File

@ -12,8 +12,9 @@ Bug fixes
- [web] fixed missing columns in SELECT statements (PostgreSQL)
- [web] fixed display of ghosts when dragging events
- [web] fixed management of mail labels in Preferences module
- [web] respect super user privileges to create in any calendar and addressbook
- [web] properly null-terminate IS8601-formatted dates (#3539)
- [web] respect super user privileges to create in any calendar and addressbook (#3533)
- [web] properly null-terminate IS8601-formatted dates (#3539)
- [web] display CC/BCC fields in message editor when initialized with values
3.0.2 (2016-03-04)
------------------

View File

@ -14,8 +14,8 @@
vm.autocomplete = {to: {}, cc: {}, bcc: {}};
vm.autosave = null;
vm.autosaveDrafts = autosaveDrafts;
vm.hideCc = true;
vm.hideBcc = true;
vm.hideCc = (stateMessage.editable.cc.length === 0);
vm.hideBcc = (stateMessage.editable.bcc.length === 0);
vm.cancel = cancel;
vm.save = save;
vm.send = send;