diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-10 07:56:40 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-10 07:56:40 +0000 |
| commit | 75e5301cc44d6d2ee2bb4b9b31c3363c470aa204 (patch) | |
| tree | 8392aef6ce1c53c5b60c68ee4c924b7b6b29e5cc /roundcubemail/program | |
| parent | 991aec09361bddd7345f9ed9792c3621404c03b0 (diff) | |
- Followup last commit, trim subject text for title
git-svn-id: https://svn.roundcube.net/trunk@5200 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
| -rw-r--r-- | roundcubemail/program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 0f17633a2..b951aa591 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -6120,7 +6120,7 @@ rcube_webmail.long_subject_title_ie = function(elem, indent) { if (!elem.title) { var $elem = $(elem), - txt = $elem.text(), + txt = $.trim($elem.text()), tmp = $('<span>').text(txt) .css({'position': 'absolute', 'float': 'left', 'visibility': 'hidden', 'font-size': $elem.css('font-size'), 'font-weight': $elem.css('font-weight')}) |
