Skip to content

Commit

Permalink
don't need to send cursor color in diffs, already have it from curren…
Browse files Browse the repository at this point in the history
…t user obj
  • Loading branch information
tristancalderbank committed Oct 18, 2017
1 parent 02d92a3 commit 91cc50f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
15 changes: 14 additions & 1 deletion public/css/etch.css
Expand Up @@ -35,7 +35,7 @@ body {
display: flex;
flex-flow: column;
flex: 1;
padding: 20px 0px;
padding: 20px 0px;
}

.title {
Expand Down Expand Up @@ -250,4 +250,17 @@ body {
.popup-your-color {
width: 15px;
height: 15px;
}

.created-at {
display: flex;
justify-content: center;
font-weight: 200;
color: grey;
font-size: 0.9em;
}

.created-at-link {
color: #cf4748;
margin-left: 5px;
}
1 change: 0 additions & 1 deletion server/session.js
Expand Up @@ -124,7 +124,6 @@ class Session {
x: user.nextPos.x,
y: user.nextPos.y,
color: user.color,
cursorColor: user.cursorColor,
id
});

Expand Down

1 comment on commit 91cc50f

@NicoM1
Copy link
Contributor

@NicoM1 NicoM1 commented on 91cc50f Oct 18, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ahaha I totally thought of taking this out after and just didnt bother

Please sign in to comment.