Changeset 748 in subversion


Ignore:
Timestamp:
Aug 29, 2007 3:47:05 PM (6 years ago)
Author:
richs
Message:

Fixed multi-message move/delete

Location:
trunk/roundcubemail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r677 r748  
    11CHANGELOG RoundCube Webmail 
    22--------------------------- 
     3 
     42007/08/29 (richs) 
     5---------- 
     6- Fixed moving/deleting messages when more than 1 is selected 
    37 
    482007/08/15 (thomasb) 
  • trunk/roundcubemail/program/js/app.js

    r740 r748  
    10961096      { 
    10971097      this.enable_command('reply', 'reply-all', 'forward', false); 
    1098       this.enable_command('show', 'delete', 'moveto', selected); 
     1098      this.enable_command('show', selected); 
     1099      this.enable_command('delete', 'moveto', (list.selection.length > 0 ? true : false)); 
    10991100      } 
    11001101    else 
    11011102      { 
    1102       this.enable_command('show', 'reply', 'reply-all', 'forward', 'print', 'delete', 'moveto', selected); 
     1103      this.enable_command('show', 'reply', 'reply-all', 'forward', 'print', selected); 
     1104      this.enable_command('delete', 'moveto', (list.selection.length > 0 ? true : false)); 
    11031105      } 
    11041106 
Note: See TracChangeset for help on using the changeset viewer.