summaryrefslogtreecommitdiff
path: root/program/js/app.js
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2009-06-02 15:46:14 +0000
committerthomascube <thomas@roundcube.net>2009-06-02 15:46:14 +0000
commit9489adc5936fd516f3f6df91cfce3697b36e2cf1 (patch)
tree1c8b29d6883b2f96025fcf59098d4f7820ac6acb /program/js/app.js
parenta36cf6d2373f71f3293dbf743117009caab1a77a (diff)
Fix list events used in drag&drop functionality (#1485890)
Diffstat (limited to 'program/js/app.js')
-rw-r--r--program/js/app.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 4f12e808a..9cc3c1d73 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -164,8 +164,8 @@ function rcube_webmail()
this.message_list.addEventListener('keypress', function(o){ p.msglist_keypress(o); });
this.message_list.addEventListener('select', function(o){ p.msglist_select(o); });
this.message_list.addEventListener('dragstart', function(o){ p.drag_start(o); });
- this.message_list.addEventListener('dragmove', function(o, e){ p.drag_move(e); });
- this.message_list.addEventListener('dragend', function(o, e){ p.drag_end(e); });
+ this.message_list.addEventListener('dragmove', function(e){ p.drag_move(e); });
+ this.message_list.addEventListener('dragend', function(e){ p.drag_end(e); });
document.onmouseup = function(e){ return p.doc_mouse_up(e); };
this.message_list.init();
@@ -280,8 +280,8 @@ function rcube_webmail()
this.contact_list.addEventListener('keypress', function(o){ p.contactlist_keypress(o); });
this.contact_list.addEventListener('select', function(o){ p.contactlist_select(o); });
this.contact_list.addEventListener('dragstart', function(o){ p.drag_start(o); });
- this.contact_list.addEventListener('dragmove', function(o, e){ p.drag_move(e); });
- this.contact_list.addEventListener('dragend', function(o, e){ p.drag_end(e); });
+ this.contact_list.addEventListener('dragmove', function(e){ p.drag_move(e); });
+ this.contact_list.addEventListener('dragend', function(e){ p.drag_end(e); });
this.contact_list.init();
if (this.env.cid)