From 03da3ea6ff13903deea76b551b2817f32494fd5b Mon Sep 17 00:00:00 2001 From: thomasb Date: Tue, 2 Jun 2009 15:46:14 +0000 Subject: Fix list events used in drag&drop functionality (#1485890) git-svn-id: https://svn.roundcube.net/trunk@2592 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/js/app.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'roundcubemail/program/js/app.js') diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 4f12e808a..9cc3c1d73 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/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) -- cgit v1.2.3