diff options
author | thomascube <thomas@roundcube.net> | 2008-02-28 19:43:54 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-02-28 19:43:54 +0000 |
commit | bf36a9a7e313c05d206791b89fe26f7b06bb8d70 (patch) | |
tree | d4cd9cff2715d4284f338ace6f3d37fe0a964679 /program/js/list.js | |
parent | fa7539e7aded38fd87f81d5db083b7e3b1af0547 (diff) |
Fix quirky message selection
Diffstat (limited to 'program/js/list.js')
-rw-r--r-- | program/js/list.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/list.js b/program/js/list.js index b9750fa47..e42d3f6b7 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -207,13 +207,13 @@ blur: function() */ drag_row: function(e, id) { - this.in_selection_before = this.in_selection(id) ? id : false; - // don't do anything (another action processed before) var evtarget = rcube_event.get_target(e); if (this.dont_select || (evtarget && (evtarget.tagName == 'INPUT' || evtarget.tagName == 'IMG'))) return false; + this.in_selection_before = this.in_selection(id) ? id : false; + // selects currently unselected row if (!this.in_selection_before) { |