mirror of https://github.com/calzoneman/sync.git
Fix #302
This commit is contained in:
parent
1939314d72
commit
bf014530f9
|
@ -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
|
Thu Oct 24 17:29 2013 CDT
|
||||||
* www/assets/js/player.js: Add a special of special checks for
|
* www/assets/js/player.js: Add a special of special checks for
|
||||||
dailymotion because their player can only seek to the nearest
|
dailymotion because their player can only seek to the nearest
|
||||||
|
|
|
@ -1038,7 +1038,7 @@ function handleModPermissions() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function handlePermissionChange() {
|
function handlePermissionChange() {
|
||||||
if(CLIENT.rank >= 2) {
|
if(CLIENT.rank >= 2 && $("#channelsettingswrap").length > 0) {
|
||||||
$("#channelsettingswrap3").show();
|
$("#channelsettingswrap3").show();
|
||||||
if($("#channelsettingswrap").html().trim() == "") {
|
if($("#channelsettingswrap").html().trim() == "") {
|
||||||
$("#channelsettingswrap").load("channeloptions.html", handleModPermissions);
|
$("#channelsettingswrap").load("channeloptions.html", handleModPermissions);
|
||||||
|
|
Loading…
Reference in New Issue