diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-02-17 15:47:09 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-02-17 15:47:09 +0100 |
commit | 33dc8249fd7c9add67c874cec8d517a315e41dac (patch) | |
tree | 51b9dd6be5a95024b61650883003807ea6b09f04 /program/js | |
parent | f5fcb92dd49622c9938462935202eeb1765cfc7c (diff) |
Fix regression in copying contacts (with drag'n'drop)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 18baf8022..4ecbda706 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -771,7 +771,7 @@ function rcube_webmail() case 'moveto': if (this.task == 'mail') this.move_messages(props); - else if (this.task == 'addressbook' && this.drag_active) + else if (this.task == 'addressbook') this.copy_contact(null, props); break; |