summaryrefslogtreecommitdiff
path: root/static/js/pichat.js
diff options
context:
space:
mode:
authortim b <timb@camcompu.home>2010-05-30 07:35:30 -0700
committertim b <timb@camcompu.home>2010-05-30 07:35:30 -0700
commit213b7c38376df9e7645aec5ecb2c1e06e56fb4c6 (patch)
treeed159e288631de24824786421e6a9ef268d48871 /static/js/pichat.js
parent8ad1bb3981936764c8f534659abf52367ccd111b (diff)
a bit longer text allowed
Diffstat (limited to 'static/js/pichat.js')
-rw-r--r--static/js/pichat.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/static/js/pichat.js b/static/js/pichat.js
index f197079..f130239 100644
--- a/static/js/pichat.js
+++ b/static/js/pichat.js
@@ -286,7 +286,7 @@ function submitMessage() {
$('#msgInput').val('');
if (content == '') { return; }
- if (content.length > 1337) {
+ if (content.length > 2468) {
alert("POST TOO LONG DUDE!");
return;
} // this shouldn't just be client side :V