diff options
author | thomascube <thomas@roundcube.net> | 2008-12-30 15:22:35 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-12-30 15:22:35 +0000 |
commit | 98324f5db07905098180a041d8a06dea306c3999 (patch) | |
tree | 1b095c69f2d7cb5ee9d893310e242c2fe44850a8 | |
parent | 1ddc579945a82a33690e2dfd2c7f8ea2ccf2d82b (diff) |
Fix drag & drop in address bookv0.2-stable@2204
-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 ef924eebd..6feb7d86e 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}; |