Remove some tippy titles
parent
f78a4c538c
commit
de5feeda13
|
@ -516,7 +516,6 @@ define([
|
|||
var roomEl = h('div.cp-app-contacts-friend.cp-avatar', {
|
||||
'data-key': id,
|
||||
'data-user': room.isFriendChat ? userlist[0].curvePublic : '',
|
||||
title: room.name
|
||||
});
|
||||
|
||||
|
||||
|
@ -889,6 +888,9 @@ define([
|
|||
if (!data) { $button.hide(); }
|
||||
$('.cp-app-contacts-friend[data-user="'+curve+'"]')
|
||||
.find('.cp-mute-icon').show();
|
||||
if ($('.cp-contacts-muted-table').find('.cp-contacts-muted-user').length === 0) {
|
||||
UI.findOKButton().click();
|
||||
}
|
||||
});
|
||||
});
|
||||
return h('div.cp-contacts-muted-user', [
|
||||
|
@ -898,7 +900,7 @@ define([
|
|||
]);
|
||||
});
|
||||
var content = h('div', [
|
||||
h('h4', Messages.contacts_mutedUsers || 'Muted users...'),
|
||||
h('h4', Messages.contacts_mutedUsers),
|
||||
h('div.cp-contacts-muted-table', rows)
|
||||
]);
|
||||
$button.off('click');
|
||||
|
|
|
@ -729,9 +729,7 @@ define([
|
|||
actions,
|
||||
status,
|
||||
];
|
||||
var div = h('div.cp-team-roster-member', {
|
||||
title: data.displayName
|
||||
}, content);
|
||||
var div = h('div.cp-team-roster-member', content);
|
||||
if (data.profile) {
|
||||
$(div).dblclick(function (e) {
|
||||
e.preventDefault();
|
||||
|
|
Loading…
Reference in New Issue