mirror of https://github.com/calzoneman/sync.git
Change leader icon to be a star because why not
This commit is contained in:
parent
28a0a95851
commit
11f1ab60f9
|
@ -39,9 +39,9 @@ function fmtUserlistItem(div, rank, leader) {
|
||||||
$(name).attr("class", "userlist_op");
|
$(name).attr("class", "userlist_op");
|
||||||
|
|
||||||
var flair = div.children[0];
|
var flair = div.children[0];
|
||||||
// denote current leader with [L]
|
// denote current leader with a star
|
||||||
if(leader) {
|
if(leader) {
|
||||||
flair.innerHTML = "[L]";
|
$("<i/>").addClass("icon-star-empty").appendTo(flair);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
flair.innerHTML = "";
|
flair.innerHTML = "";
|
||||||
|
|
Loading…
Reference in New Issue