chat: Rename hide method to reduce

It doesn't hide: If sticky, it unsticks. Otherwise, it minimizes.
This commit is contained in:
Richard Hansen 2021-12-06 17:11:28 -05:00
parent f7d7d89874
commit b830ed9744
2 changed files with 4 additions and 4 deletions

View file

@ -76,7 +76,7 @@ const getParameters = [
callback: (val) => {
if (val === 'false') {
settings.hideChat = true;
chat.hide();
chat.reduce();
$('#chaticon').hide();
}
},
@ -480,7 +480,7 @@ const pad = {
}
if (window.clientVars.readonly) {
chat.hide();
chat.reduce();
$('#myusernameedit').attr('disabled', true);
$('#chatinput').attr('disabled', true);
$('#chaticon').hide();