Changeset 3014548 in github


Ignore:
Timestamp:
Aug 29, 2007 3:47:05 PM (6 years ago)
Author:
svncommit <devs@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
63f9d3c0
Parents:
db401bf
Message:

Fixed multi-message move/delete

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r6b603da r3014548  
    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) 
  • program/js/app.js

    r234c0d0 r3014548  
    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.