diff options
author | thomascube <thomas@roundcube.net> | 2008-12-30 15:23:41 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-12-30 15:23:41 +0000 |
commit | baf0e65115fc453fa2d1b62fad1b8e941315546c (patch) | |
tree | d41553045bc72ceabd24b73382611262379957e6 | |
parent | 27720d69f4d6647360ea6cace0b41c59f29cacf9 (diff) |
Fix drag & drop in address book
-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 a09a11c77..1fa783e5c 100644 --- a/program/js/app.js +++ b/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}; |