diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-02-13 07:43:33 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-02-13 07:43:33 +0000 |
| commit | c0e5fb35ace87143951d0cbf1c8985a0f3cf8acd (patch) | |
| tree | 2b07cf417c97456a87fe49499f73d99fb09143e6 /roundcubemail/program/js/app.js | |
| parent | c5e7f0d7871700cd9e0cf59934e8837e42207219 (diff) | |
Always use subject col when dragging messages
git-svn-id: https://svn.roundcube.net/trunk@1066 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/app.js')
| -rw-r--r-- | roundcubemail/program/js/app.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 07b42a5f5..20cd67b2c 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -146,6 +146,9 @@ function rcube_webmail() else this.message_list.focus(); } + + if (this.env.coltypes) + this.set_message_coltypes(this.env.coltypes); // enable mail commands this.enable_command('list', 'checkmail', 'compose', 'add-contact', 'search', 'reset-search', true); @@ -3183,8 +3186,10 @@ function rcube_webmail() cell.id = 'rcmHead'+col; } + + if (col == 'subject' && this.message_list) + this.message_list.subject_col = n+1; } - }; // create a table row in the message list |
