summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-12-30 15:23:41 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-12-30 15:23:41 +0000
commit5ec1a18f9bae7c9058a3349d1d73945eb49384f8 (patch)
tree03a13b6c132f2c389ee120f98d138d93d86f206f /roundcubemail/program
parentb2a619f90c04d1e8c2d8e2e7d9418b32deaf1757 (diff)
Fix drag & drop in address book
git-svn-id: https://svn.roundcube.net/trunk@2204 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index a09a11c77..1fa783e5c 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -1192,7 +1192,7 @@ function rcube_webmail()
if (this.gui_objects.folderlist && model)
{
var li, pos, list, height;
- list = rcube_find_object(this.task == 'mail' ? 'mailboxlist' : 'folderlist');
+ list = rcube_find_object(this.task == 'mail' ? 'mailboxlist' : 'directorylist');
pos = rcube_get_object_pos(list);
this.env.folderlist_coords = {x1:pos.x, y1:pos.y, x2:pos.x + list.offsetWidth, y2:pos.y + list.offsetHeight};