diff options
| author | Scott Ostler <sostler@deathmachine.local> | 2010-04-02 17:06:57 -0400 |
|---|---|---|
| committer | Scott Ostler <sostler@deathmachine.local> | 2010-04-02 17:06:57 -0400 |
| commit | 0447dc0cbea30537eeb55604cad19e265d305585 (patch) | |
| tree | 9b9f78666824b0daa102d26be4c93e24195e79ad /static/js/pichat.js | |
| parent | bd3925a4a19dd3b2c65abad579887b108d8f8546 (diff) | |
| parent | aa3165c303d8feb2a34329539c67bd71863c9eb4 (diff) | |
Resolved PROD merge
Diffstat (limited to 'static/js/pichat.js')
| -rwxr-xr-x | static/js/pichat.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/static/js/pichat.js b/static/js/pichat.js index b4b7c7d..a13b572 100755 --- a/static/js/pichat.js +++ b/static/js/pichat.js @@ -130,9 +130,9 @@ function submitMessage() { var content = $.trim($('#msgInput').val()); $('#msgInput').val(''); if (content == '') { return; } - if (content.length > 6666) { - alert("POST TOO LONG DUDE!"); - return; + if (content.length > 1000) { + alert("POST TOO LONG DUDE!"); + return; } // this shouldn't just be client side :V PendingMessages[content] = true; |
