From c93bc97a944304a88ed762ecaa73d2dc8f9d5345 Mon Sep 17 00:00:00 2001 From: Calvin Montgomery Date: Fri, 28 Feb 2014 13:55:29 -0600 Subject: [PATCH] Hide channel settings button in chatonly for non mods --- www/js/util.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/js/util.js b/www/js/util.js index 9ef263ab..5f94e6d1 100644 --- a/www/js/util.js +++ b/www/js/util.js @@ -1502,11 +1502,13 @@ function chatOnly() { .appendTo($("#chatheader")) .click(showUserOptions); $("").addClass("label label-default pull-right pointer") + .attr("id", "showchansettings") .text("Channel Settings") .appendTo($("#chatheader")) .click(function () { $("#channeloptions").modal(); }); + setVisible("#showchansettings", CLIENT.rank >= 2); $("body").addClass("chatOnly"); resizeStuff(); }