From f0a39b05952676b6f60be7cdb5ff0d213f147976 Mon Sep 17 00:00:00 2001 From: webzwo0i Date: Thu, 8 Jul 2021 01:20:05 +0200 Subject: [PATCH] Chat: disabled attribute is boolean --- src/static/js/chat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/static/js/chat.js b/src/static/js/chat.js index 48cc562b0..e84a8ca6b 100755 --- a/src/static/js/chat.js +++ b/src/static/js/chat.js @@ -68,7 +68,7 @@ exports.chat = (() => { this.stickToScreen(true); $('#options-stickychat').prop('checked', true); $('#options-chatandusers').prop('checked', true); - $('#options-stickychat').prop('disabled', 'disabled'); + $('#options-stickychat').prop('disabled', true); userAndChat = true; } else { $('#options-stickychat').prop('disabled', false);