diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-10-14 12:11:09 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-10-14 12:11:09 +0200 |
commit | 075574c81f6d8c1db3c2f2dba1a3f084fcb810d8 (patch) | |
tree | 0cf718d5a1ad70c438c6fda38ae1982f1685b0f2 /program/js/list.js | |
parent | ddeed163c0ee8fa205e4a2fd87b61a80504f7ed9 (diff) |
Use onclick even for status, flag and expando actions to fix issue
where mouse right click would invoke action where it shouldn't
Diffstat (limited to 'program/js/list.js')
-rw-r--r-- | program/js/list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/list.js b/program/js/list.js index 0f8d56c19..f05ac1aaa 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -409,7 +409,7 @@ drag_row: function(e, id) var evtarget = rcube_event.get_target(e), tagname = evtarget.tagName.toLowerCase(); - if (this.dont_select || (evtarget && (tagname == 'input' || tagname == 'img'))) + if (this.dont_select || (evtarget && (tagname == 'input' || tagname == 'img' || evtarget.onclick))) return true; // accept right-clicks |