summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-12-15 20:06:59 +0000
committeralecpl <alec@alec.pl>2008-12-15 20:06:59 +0000
commita2efac5e7bc1951799517c3c63559166d11d0768 (patch)
treeeb36630474e20ef8cfdd9ffa8c4f7e36d9f9afb5 /program
parent4fb1e8582baa5e6b746f31206cb42bd4dadc18be (diff)
- fix unflagged icon setting on IE
- small code cleanups
Diffstat (limited to 'program')
-rw-r--r--program/js/app.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/program/js/app.js b/program/js/app.js
index c46997afa..7e9509ec2 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1624,7 +1624,7 @@ function rcube_webmail()
if (rows[uid].flagged && this.env.flaggedicon)
icn_src = this.env.flaggedicon;
- else if (this.env.unflaggedicon)
+ else if (!rows[uid].flagged && this.env.unflaggedicon)
icn_src = this.env.unflaggedicon;
if (rows[uid].flagged_icon && icn_src)
@@ -3491,10 +3491,6 @@ function rcube_webmail()
}
else if (col == 'subject' && this.message_list)
this.message_list.subject_col = n+1;
- else if (col == 'flag' && this.env.unflaggedicon)
- {
- cell.innerHTML = '<img src="'+this.env.unflaggedicon+'" alt="" />';
- }
}
};
@@ -3556,7 +3552,7 @@ function rcube_webmail()
{
if (flags.flagged && this.env.flaggedicon)
col.innerHTML = '<img src="'+this.env.flaggedicon+'" alt="" />';
- else if(this.env.unflaggedicon)
+ else if(!flags.flagged && this.env.unflaggedicon)
col.innerHTML = '<img src="'+this.env.unflaggedicon+'" alt="" />';
}
else if (c=='attachment')