From ce86f0f14f0cf1bf73f4f6045aea1fa00db432aa Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Sun, 11 Dec 2011 13:12:33 -0500 Subject: [PATCH] Make string for unread count configureable by skin; add file type classes to attachments list --- program/js/app.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/js/app.js b/program/js/app.js index b6c7d1d..da1e241 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -5624,7 +5624,7 @@ } 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(); -- Gitblit v1.9.1