diff options
author | alecpl <alec@alec.pl> | 2011-11-10 11:16:32 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-11-10 11:16:32 +0000 |
commit | 46cdbf074e59a33fafc8a71406dbb9984a48bc95 (patch) | |
tree | 5ef0eb54016626d85b2138f8c4a72173eb7ac344 /program/js/app.js | |
parent | d61756663c599121fb1042ffb8b4817d84bde10e (diff) |
- Fix inconsistent behaviour of Compose button in Drafts folder, add Edit button for drafts
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/program/js/app.js b/program/js/app.js index 53143b129..c0da94348 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -207,7 +207,7 @@ function rcube_webmail() 'moveto', 'copy', 'delete', 'open', 'mark', 'edit', 'viewsource', 'download', 'print', 'load-attachment', 'load-headers', 'forward-attachment']; - if (this.env.action=='show' || this.env.action=='preview') { + if (this.env.action == 'show' || this.env.action == 'preview') { this.enable_command(this.env.message_commands, this.env.uid); this.enable_command('reply-list', this.env.list_post); @@ -460,7 +460,7 @@ function rcube_webmail() } // check input before leaving compose step - if (this.task=='mail' && this.env.action=='compose' && $.inArray(command, this.env.compose_commands)<0) { + if (this.task == 'mail' && this.env.action == 'compose' && $.inArray(command, this.env.compose_commands)<0) { if (this.cmp_hash != this.compose_field_hash() && !confirm(this.get_label('notsentwarning'))) return false; } @@ -815,13 +815,7 @@ function rcube_webmail() if (this.task == 'mail') { url += '&_mbox='+urlencode(this.env.mailbox); - - if (this.env.mailbox == this.env.drafts_mailbox) { - var uid; - if (uid = this.get_single_uid()) - url += '&_draft_uid='+uid; - } - else if (props) + if (props) url += '&_to='+urlencode(props); } // modify url if we're in addressbook |