diff options
| author | timb <timb@mb.home> | 2010-04-01 00:40:42 -0700 |
|---|---|---|
| committer | timb <timb@mb.home> | 2010-04-01 00:40:42 -0700 |
| commit | 70d8c1992f97286a63babcf7ebd996ab74ec7eac (patch) | |
| tree | 0be94521405b982e8b97f4234a02d4d3c28fc8ce /static/js | |
| parent | 8d0e1e9aa4505ccaf0c77583fc2654806d17e8df (diff) | |
| parent | aa3165c303d8feb2a34329539c67bd71863c9eb4 (diff) | |
fixing conflicts >:|
Diffstat (limited to 'static/js')
| -rwxr-xr-x | static/js/pichat.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/js/pichat.js b/static/js/pichat.js index 8211168..4d4ed17 100755 --- a/static/js/pichat.js +++ b/static/js/pichat.js @@ -129,7 +129,7 @@ function submitMessage() { var content = $.trim($('#msgInput').val()); $('#msgInput').val(''); if (content == '') { return; } - if (content.length > 6666) { + if (content.length > 1000) { alert("POST TOO LONG DUDE!"); return; } // this shouldn't just be client side :V |
