Display full message subject in onmouseover on truncated subject in mail view (#5346)

pull/5361/head
Aleksander Machniak 8 years ago
parent e13deb2e47
commit 8e65f618c5

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail 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 - Searching in both contacts and groups when LDAP addressbook with group_filters option is used
- Update TinyMCE to version 4.3.13 (#5309) - Update TinyMCE to version 4.3.13 (#5309)
- Enigma: Search missing public keys on a key-server in mail compose (#5286) - Enigma: Search missing public keys on a key-server in mail compose (#5286)

@ -9047,7 +9047,7 @@ rcube_webmail.long_subject_title_ex = function(elem)
rcube_webmail.subject_text = function(elem) rcube_webmail.subject_text = function(elem)
{ {
var t = $(elem).clone(); var t = $(elem).clone();
t.find('.skip-on-drag').remove(); t.find('.skip-on-drag,.voice').remove();
return t.text(); return t.text();
}; };

@ -69,7 +69,7 @@
</div> </div>
<roundcube:endif /> <roundcube:endif />
<h2 class="subject"><span class="voice"><roundcube:label name="subject" />: </span><roundcube:object name="messageHeaders" valueOf="subject" /></h2> <h2 class="subject"><span onmouseover="rcube_webmail.long_subject_title(this)"><span class="voice"><roundcube:label name="subject" />: </span><roundcube:object name="messageHeaders" valueOf="subject" /></span></h2>
<div class="message-headers"> <div class="message-headers">
<roundcube:object name="messageHeaders" class="headers-table" addicon="/images/addcontact.png" exclude="subject" max="20" /> <roundcube:object name="messageHeaders" class="headers-table" addicon="/images/addcontact.png" exclude="subject" max="20" />
</div> </div>

@ -33,7 +33,7 @@
<roundcube:endif /> <roundcube:endif />
</div> </div>
<h3 class="subject"><span class="voice"><roundcube:label name="subject" />: </span><roundcube:object name="messageHeaders" valueOf="subject" /></h3> <h3 class="subject"><span onmouseover="rcube_webmail.long_subject_title(this)"><span class="voice"><roundcube:label name="subject" />: </span><roundcube:object name="messageHeaders" valueOf="subject" /></span></h3>
<a href="#details" id="previewheaderstoggle" class="moreheaderstoggle" aria-expanded="false"><span class="iconlink" title="<roundcube:label name='togglemoreheaders' />"></span></a> <a href="#details" id="previewheaderstoggle" class="moreheaderstoggle" aria-expanded="false"><span class="iconlink" title="<roundcube:label name='togglemoreheaders' />"></span></a>
<div id="contactphoto"><roundcube:object name="contactphoto" /></div> <div id="contactphoto"><roundcube:object name="contactphoto" /></div>

@ -174,7 +174,7 @@ function rcube_mail_ui()
} }
if (rcmail.env.action == 'show') { if (rcmail.env.action == 'show') {
$('#messagecontent').focus() $('#messagecontent').focus();
} }
} }
else if (rcmail.env.action == 'compose') { else if (rcmail.env.action == 'compose') {

Loading…
Cancel
Save