Fix missing tags on messages list in Roundcube 1.3 widescreen mode

This commit is contained in:
Aleksander Machniak 2017-02-13 11:45:01 +01:00
parent 159025d142
commit 8044f158db

View file

@ -516,7 +516,7 @@ function tag_add_callback(tag)
if (!row)
return;
var subject = $('td.subject > a', row.obj);
var subject = $('td.subject a', row.obj);
if ($('span.tagbox', subject).filter(function() { return $(this).data('tag') == tag.uid; }).length) {
return;
@ -604,7 +604,7 @@ function message_list_update_tags(e)
if (!row)
return;
var subject = $('td.subject > a', row.obj),
var subject = $('td.subject a', row.obj),
boxes = [];
$('span.tagbox', subject).remove();