Don't show users border when hover mouse if logged out

This commit is contained in:
David Rowe 2016-07-02 11:25:04 +12:00
parent c82ac269ce
commit 760f4366e1

View file

@ -826,6 +826,10 @@ var usersWindow = (function () {
function onMouseMoveEvent(event) {
var isVisible;
if (!isLoggedIn) {
return;
}
if (isMovingScrollbar) {
if (scrollbarBackgroundPosition.x - WINDOW_MARGIN <= event.x
&& event.x <= scrollbarBackgroundPosition.x + SCROLLBAR_BACKGROUND_WIDTH + WINDOW_MARGIN