This commit is contained in:
calzoneman 2013-10-30 19:29:55 -05:00
parent 1939314d72
commit bf014530f9
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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);