mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-14 18:11:23 +01:00
Hide roles label in usercard if there is no roles to be displayed
This commit is contained in:
parent
487f5756f5
commit
309d2de7c7
@ -803,11 +803,13 @@
|
||||
return parseFloat(b.position) - parseFloat(a.position);
|
||||
});
|
||||
$("#usercard .role .roles").empty();
|
||||
var rolecount = 0;
|
||||
for (var j = 0; j < data.roles.length; j++) {
|
||||
var role = data.roles[j];
|
||||
if (role.id == guild_id) {
|
||||
continue;
|
||||
}
|
||||
rolecount++;
|
||||
var color = null;
|
||||
if (role.color) {
|
||||
color = "#" + role.color.toString(16);
|
||||
@ -815,6 +817,11 @@
|
||||
var rol = Mustache.render(template, {name: role.name, color: color});
|
||||
$("#usercard .role .roles").append(rol);
|
||||
}
|
||||
if (rolecount) {
|
||||
$("#usercard .role").show();
|
||||
} else {
|
||||
$("#usercard .role").hide();
|
||||
}
|
||||
|
||||
$("#usercard-mention-btn").off("click");
|
||||
$("#usercard-mention-btn").click(function () {
|
||||
|
Loading…
Reference in New Issue
Block a user