css: remove no more used element

#nootherusers, #chatthrob, #focusprotector, #mystatusform, .hotrect, .throbbold
This commit is contained in:
Sebastian Castro 2020-03-21 11:19:58 +01:00 committed by muxator
parent 4177b3f943
commit 0603bf8097
7 changed files with 2 additions and 72 deletions

View file

@ -421,20 +421,6 @@ var paduserlist = (function()
jqueryNode.removeAttr('disabled').addClass('editable');
}
function updateInviteNotice()
{
if (otherUsersInfo.length == 0)
{
$("#otheruserstable").hide();
$("#nootherusers").show();
}
else
{
$("#nootherusers").hide();
$("#otheruserstable").show();
}
}
var knocksToIgnore = {};
var guestPromptFlashState = 0;
var guestPromptFlash = padutils.makeAnimationScheduler(
@ -619,8 +605,6 @@ var paduserlist = (function()
rowManager.insertRow(newIndex, userData);
}
updateInviteNotice();
self.updateNumberOfOnlineUsers();
},
updateNumberOfOnlineUsers: function()
@ -668,13 +652,11 @@ var paduserlist = (function()
hooks.callAll('userLeave', {
userInfo: info
});
updateInviteNotice();
}
}
}, 8000); // how long to wait
userData.leaveTimer = thisLeaveTimer;
}
updateInviteNotice();
self.updateNumberOfOnlineUsers();
},