diff options
author | Frug <frugen@gmail.com> | 2014-01-22 17:01:49 -0500 |
---|---|---|
committer | Frug <frugen@gmail.com> | 2014-01-22 17:01:49 -0500 |
commit | b4cea6569e07a95fe15c0887d7e751595d410e47 (patch) | |
tree | 7ba13075096d33b0af0fbea9f28843d8b45ead57 | |
parent | 8b5bc1d85d475a85f96d25cfb8540197d246ef36 (diff) | |
download | AJAX-Chat-b4cea6569e07a95fe15c0887d7e751595d410e47.zip AJAX-Chat-b4cea6569e07a95fe15c0887d7e751595d410e47.tar.gz AJAX-Chat-b4cea6569e07a95fe15c0887d7e751595d410e47.tar.bz2 |
cleanup
-rw-r--r-- | chat/js/chat.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chat/js/chat.js b/chat/js/chat.js index ebc6c54..b5165dd 100644 --- a/chat/js/chat.js +++ b/chat/js/chat.js @@ -695,10 +695,10 @@ var ajaxChat = { switch(messageParts[0]) { case '/privmsg': this.playSound(this.settings['soundPrivate']); - break; + break; default: this.playSound(this.settings['soundReceive']); - }; + } break; } } |