summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-10-08 10:18:32 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-10-08 10:18:32 +0000
commit7b46a3fe4fe3f6079609765ba1f3435be59f5027 (patch)
tree4161e8227b377c8c098cfca82660aee1af98a7a6 /roundcubemail/program/js
parent7cf9475067129efee5bcb4c3f7913f055020804a (diff)
- Add (different) attachment icon for messages of type multipart/report (#1486165)
git-svn-id: https://svn.roundcube.net/trunk@4064 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
-rw-r--r--roundcubemail/program/js/app.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index 618e07404..b4d980742 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -1661,6 +1661,8 @@ function rcube_webmail()
else if (c == 'attachment') {
if (/application\/|multipart\/m/.test(flags.ctype))
html = '<span class="attachment">&nbsp;</span>';
+ else if (/multipart\/report/.test(flags.ctype))
+ html = '<span class="report">&nbsp;</span>';
else
html = '&nbsp;';
}