Changeset 2153 in subversion
- Timestamp:
- Dec 15, 2008 3:06:59 PM (4 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 1 added
- 2 edited
-
program/js/app.js (modified) (3 diffs)
-
skins/default/images/icons/blank.gif (added)
-
skins/default/templates/mail.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/js/app.js
r2138 r2153 1625 1625 if (rows[uid].flagged && this.env.flaggedicon) 1626 1626 icn_src = this.env.flaggedicon; 1627 else if ( this.env.unflaggedicon)1627 else if (!rows[uid].flagged && this.env.unflaggedicon) 1628 1628 icn_src = this.env.unflaggedicon; 1629 1629 … … 3492 3492 else if (col == 'subject' && this.message_list) 3493 3493 this.message_list.subject_col = n+1; 3494 else if (col == 'flag' && this.env.unflaggedicon)3495 {3496 cell.innerHTML = '<img src="'+this.env.unflaggedicon+'" alt="" />';3497 }3498 3494 } 3499 3495 }; … … 3557 3553 if (flags.flagged && this.env.flaggedicon) 3558 3554 col.innerHTML = '<img src="'+this.env.flaggedicon+'" alt="" />'; 3559 else if( this.env.unflaggedicon)3555 else if(!flags.flagged && this.env.unflaggedicon) 3560 3556 col.innerHTML = '<img src="'+this.env.unflaggedicon+'" alt="" />'; 3561 3557 } -
trunk/roundcubemail/skins/default/templates/mail.html
r2124 r2153 57 57 attachmentIcon="/images/icons/attachment.png" 58 58 flaggedIcon="/images/icons/flagged.png" 59 unflaggedIcon="/images/ blank.gif" />59 unflaggedIcon="/images/icons/blank.gif" /> 60 60 </div> 61 61
Note: See TracChangeset
for help on using the changeset viewer.
