diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-10-14 13:51:43 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-10-14 13:51:43 +0200 |
commit | eb6253ccc183de419bce8e70c409b46119dcba24 (patch) | |
tree | ad9b3b81e3f833b3489bbb32c037413c72bb50e9 | |
parent | c1bc8f6c827a27540b5510b42dcc65b39d38f2c1 (diff) |
Fix regression where click on subject text wasn't selecting the message row
-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 f05ac1aaa..996d30808 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' || evtarget.onclick))) + if (this.dont_select || (evtarget && (tagname == 'input' || tagname == 'img' || (tagname != 'a' && evtarget.onclick)))) return true; // accept right-clicks |