Skip to content

Commit

Permalink
🎨 #147
Browse files Browse the repository at this point in the history
  • Loading branch information
adlered committed May 10, 2024
1 parent 11ab50d commit 587eaa4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/css/base.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main/resources/js/chat-room.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ var redPacketMap = new Map();
var catchUserParam = window.localStorage['robot_list'] ? window.localStorage['robot_list'] : '';
var catchUsers = catchUserParam.length > 0 ? catchUserParam.split(',') : [];
var catchWordFlag = window.localStorage['catch-word-flag'] == true || window.localStorage['catch-word-flag'] == 'true' ? true : false;
$('#catch-word').prop('checked', status);
$('#catch-word').prop('checked', catchWordFlag);
var ChatRoom = {
init: function () {
// 聊天窗口高度设置
Expand Down
Loading

0 comments on commit 587eaa4

Please sign in to comment.