From 8e65f618c5b2aa251f0553156cecf730a9f95e17 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Fri, 15 Jul 2016 13:40:09 +0200 Subject: [PATCH] Display full message subject in onmouseover on truncated subject in mail view (#5346) --- CHANGELOG | 1 + program/js/app.js | 2 +- skins/larry/templates/message.html | 2 +- skins/larry/templates/messagepreview.html | 2 +- skins/larry/ui.js | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 5b1b2a82b..a2ec7f354 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ CHANGELOG Roundcube Webmail =========================== +- Display full message subject in onmouseover on truncated subject in mail view (#5346) - Searching in both contacts and groups when LDAP addressbook with group_filters option is used - Update TinyMCE to version 4.3.13 (#5309) - Enigma: Search missing public keys on a key-server in mail compose (#5286) diff --git a/program/js/app.js b/program/js/app.js index 78fe2c4a8..cb9bef51e 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -9047,7 +9047,7 @@ rcube_webmail.long_subject_title_ex = function(elem) rcube_webmail.subject_text = function(elem) { var t = $(elem).clone(); - t.find('.skip-on-drag').remove(); + t.find('.skip-on-drag,.voice').remove(); return t.text(); }; diff --git a/skins/larry/templates/message.html b/skins/larry/templates/message.html index dde15acfb..531a3112b 100644 --- a/skins/larry/templates/message.html +++ b/skins/larry/templates/message.html @@ -69,7 +69,7 @@ -

:

+

:

diff --git a/skins/larry/templates/messagepreview.html b/skins/larry/templates/messagepreview.html index 371fb71c8..c4838b5f2 100644 --- a/skins/larry/templates/messagepreview.html +++ b/skins/larry/templates/messagepreview.html @@ -33,7 +33,7 @@ -

:

+

:

diff --git a/skins/larry/ui.js b/skins/larry/ui.js index beae8016e..4ac0e5b9c 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -174,7 +174,7 @@ function rcube_mail_ui() } if (rcmail.env.action == 'show') { - $('#messagecontent').focus() + $('#messagecontent').focus(); } } else if (rcmail.env.action == 'compose') {