Changeset bf36a9a in github


Ignore:
Timestamp:
Feb 28, 2008 2:43:54 PM (5 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
bb8243b
Parents:
fa7539e
Message:

Fix quirky message selection

Location:
program/js
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • program/js/app.js

    re8a89e8 rbf36a9a  
    696696          { 
    697697          uid = props._row.uid; 
    698           this.message_list.dont_select = true; 
     698           
    699699          // toggle read/unread 
    700700          if (this.message_list.rows[uid].deleted) { 
  • program/js/list.js

    rd24d208 rbf36a9a  
    208208drag_row: function(e, id) 
    209209{ 
    210   this.in_selection_before = this.in_selection(id) ? id : false; 
    211  
    212210  // don't do anything (another action processed before) 
    213211  var evtarget = rcube_event.get_target(e); 
    214212  if (this.dont_select || (evtarget && (evtarget.tagName == 'INPUT' || evtarget.tagName == 'IMG'))) 
    215213    return false; 
     214 
     215  this.in_selection_before = this.in_selection(id) ? id : false; 
    216216 
    217217  // selects currently unselected row 
Note: See TracChangeset for help on using the changeset viewer.