Clean up typo in chat websocket javascript client

It so happened that the code works, because both variables exist,
but the code was not clean.

close #1620
This commit is contained in:
Konstantin Podsvirov
2019-05-24 06:27:19 +03:00
committed by Damian Jarek
parent fce080f1a8
commit 56b5f8043f
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ Version 258:
* Fix clang inititalization warning in websocket
* Remove redundant use of `yield_to` in parser tests
* Add VS 2019 AzP CI matrix item
* Clean up typo in chat websocket javascript client
--------------------------------------------------------------------------------

View File

@ -51,7 +51,7 @@
};
sendMessage.onkeyup = function(ev) {
ev.preventDefault();
if (event.keyCode === 13) {
if (ev.keyCode === 13) {
send.click();
}
}