summaryrefslogtreecommitdiff
path: root/scripts/socket/message.js
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2022-07-20 10:58:42 -0400
committerKyle Gunger <kgunger12@gmail.com>2022-07-20 10:58:42 -0400
commit68db9abc7a02c78a0f170003c32d1fcd796eb212 (patch)
tree602e9be8f4641991a9666315426a8ca10807c78c /scripts/socket/message.js
parent5207f04d5b775bf4805d83c81aaad1cfcf3fe68a (diff)
Replace var with let + visual tweaks
- Replace var with let in most of my code - No longer bring cards to forfront of deck when hovering - Tweaks for dropdown selector input
Diffstat (limited to 'scripts/socket/message.js')
-rw-r--r--scripts/socket/message.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/socket/message.js b/scripts/socket/message.js
index 0288cbc..ec8e912 100644
--- a/scripts/socket/message.js
+++ b/scripts/socket/message.js
@@ -9,7 +9,7 @@ class Message{
stringify ()
{
- var dat = this.d
+ let dat = this.d
if(typeof dat !== "string"){
dat = JSON.stringify(dat);
}