summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js/app.js
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-12-11 18:12:33 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-12-11 18:12:33 +0000
commitb09db63082ae3aea8d1f4f8d24664dbf7de96bcc (patch)
tree3a8fc24f5d2da5205ac0418c81eab6698761a239 /roundcubemail/program/js/app.js
parent00572749829e7c6363684f5692af3930aa955d8e (diff)
Make string for unread count configureable by skin; add file type classes to attachments list
git-svn-id: https://svn.roundcube.net/trunk@5592 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/app.js')
-rw-r--r--roundcubemail/program/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index b6c7d1dfd..da1e241ec 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -5624,7 +5624,7 @@ function rcube_webmail()
}
if (mycount && text_obj.length)
- text_obj.html(' ('+mycount+')');
+ text_obj.html(this.env.unreadwrap.replace(/%[sd]/, mycount));
else if (text_obj.length)
text_obj.remove();