diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-10-08 10:18:32 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-10-08 10:18:32 +0000 |
| commit | 7b46a3fe4fe3f6079609765ba1f3435be59f5027 (patch) | |
| tree | 4161e8227b377c8c098cfca82660aee1af98a7a6 /roundcubemail/program | |
| parent | 7cf9475067129efee5bcb4c3f7913f055020804a (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')
| -rw-r--r-- | roundcubemail/program/js/app.js | 2 |
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"> </span>'; + else if (/multipart\/report/.test(flags.ctype)) + html = '<span class="report"> </span>'; else html = ' '; } |
