diff options
| -rwxr-xr-x | src/site.clj | 3 | ||||
| -rwxr-xr-x | static/pichat.js | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/site.clj b/src/site.clj index fb7e7a9..3030df9 100755 --- a/src/site.clj +++ b/src/site.clj @@ -27,9 +27,6 @@ (def rooms (ref {})) -;(def users (ref {})) -;(def messages (ref [])) - (def run-flusher true) (def flusher-sleep-ms 4000) (def user-timeout-ms 15000) diff --git a/static/pichat.js b/static/pichat.js index 5a40c62..51489a4 100755 --- a/static/pichat.js +++ b/static/pichat.js @@ -58,7 +58,6 @@ function handleMsgError(resp) { function submitMessage() { var content = $('#msgInput').val(); - $('#msgInput').blur(); if (content == '') { return; } $('#msgInput, #msgSubmit').attr('disabled', 'disabled'); |
