diff options
author | johnyma22 <john@mclear.co.uk> | 2012-10-29 19:29:30 +0000 |
---|---|---|
committer | johnyma22 <john@mclear.co.uk> | 2012-10-29 19:29:30 +0000 |
commit | 0e41e9fdfcae40e8c9525094275fb04754c6b5cb (patch) | |
tree | 343920ebe8aa8ac0fb460cf55bf18ae7c4510ba6 | |
parent | 429651874f64f312d2a3dd09040aa2f8f44ed47b (diff) | |
download | etherpad-lite-0e41e9fdfcae40e8c9525094275fb04754c6b5cb.zip |
allow max chat to be 999 chars
-rw-r--r-- | src/templates/pad.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/templates/pad.html b/src/templates/pad.html index 425e476d..f11b1309 100644 --- a/src/templates/pad.html +++ b/src/templates/pad.html @@ -312,7 +312,7 @@ <div id="chattext" class="authorColors"></div> <div id="chatinputbox"> <form> - <input id="chatinput" type="text" maxlength="140"> + <input id="chatinput" type="text" maxlength="999"> </form> </div> </div> |