Show emote list button in chat only

This commit is contained in:
calzoneman 2015-05-14 11:42:26 -05:00
parent c64d446b38
commit 8b69485448
1 changed files with 7 additions and 0 deletions

View File

@ -1688,7 +1688,14 @@ function chatOnly() {
.click(function () {
$("#channeloptions").modal();
});
$("<span/>").addClass("label label-default pull-right pointer")
.text("Emote List")
.appendTo($("#chatheader"))
.click(function () {
EMOTELIST.show();
});
setVisible("#showchansettings", CLIENT.rank >= 2);
$("body").addClass("chatOnly");
handleWindowResize();
}