diff options
author | svncommit <devs@roundcube.net> | 2006-07-03 20:14:26 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2006-07-03 20:14:26 +0000 |
commit | b4b081713ee88c9a7b2515d18c36bedf966641ce (patch) | |
tree | 26f751bf24530a6974827f9efc00f80a26fb2cfb /program/js/app.js | |
parent | 50844277ca2ce9b98f5d732b07ffe7a4627ff72c (diff) |
Workaround for drag-drop using whitespace in FF, Junk emptying, misc fixes
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/js/app.js b/program/js/app.js index 174920cc8..c60f62f29 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -153,7 +153,7 @@ function rcube_webmail() if (this.env.messagecount) this.enable_command('select-all', 'select-none', 'sort', 'expunge', true); - if (this.env.messagecount && this.env.mailbox==this.env.trash_mailbox) + if (this.env.messagecount && (this.env.mailbox==this.env.trash_mailbox || this.env.mailbox==this.env.junk_mailbox)) this.enable_command('purge', true); this.set_page_buttons(); @@ -893,7 +893,7 @@ function rcube_webmail() } else if (props) - url += '&_to='+props; + url += '&_to='+encodeURIComponent(props); // don't know if this is necessary... url = url.replace(/&_framed=1/, ""); @@ -1352,7 +1352,7 @@ function rcube_webmail() if (this.env.mailbox==this.env.drafts_mailbox) { this.enable_command('show', selected); - this.enable_command('delete', this.selection.length>0 ? true : false); + this.enable_command('delete', 'moveto', this.selection.length>0 ? true : false); } else { |