diff --git a/changelog b/changelog index 6eb31a2e..ce4e8157 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,10 @@ +Wed Oct 30 19:28 2013 CDT + * www/assets/js/util.js: Fix mod permission check breaking chat box + in chat only mode + +Mon Oct 20 21:48 2013 CDT + * www/channel.html: Fix padding for channel.html on small screens + Thu Oct 24 17:29 2013 CDT * www/assets/js/player.js: Add a special of special checks for dailymotion because their player can only seek to the nearest diff --git a/www/assets/js/util.js b/www/assets/js/util.js index cbda794f..93a98230 100644 --- a/www/assets/js/util.js +++ b/www/assets/js/util.js @@ -1038,7 +1038,7 @@ function handleModPermissions() { } function handlePermissionChange() { - if(CLIENT.rank >= 2) { + if(CLIENT.rank >= 2 && $("#channelsettingswrap").length > 0) { $("#channelsettingswrap3").show(); if($("#channelsettingswrap").html().trim() == "") { $("#channelsettingswrap").load("channeloptions.html", handleModPermissions);