summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorScott Ostler <scottbot9000@gmail.com>2010-09-09 03:14:32 -0400
committerScott Ostler <scottbot9000@gmail.com>2010-09-09 03:14:32 -0400
commite5a9cd50f96c8a96d180280aa1ab32e028cc2538 (patch)
tree1a14d2d04a798aa428fd19d7aa5d37ce9737836a /static
parentf1c347386eceb02f60f41792e8b0e00601977446 (diff)
Tweak file size warning
Diffstat (limited to 'static')
-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 f7c3bbd..09c7dd6 100644
--- a/static/js/pichat.js
+++ b/static/js/pichat.js
@@ -758,7 +758,7 @@ function setupUpload(elementId, roomKey) {
var r = $.trim(response);
if (r.match(/FILE_TOO_BIG/)) {
var maxSize = r.split(" ")[1] / 1024;
- alert("Sorry. Your file is just too fucking big. "
+ alert("Sorry. Your file is just too darn big. "
+ maxSize + "KB or less please.");
return;
} else if (r.match(/FILE_NOT_IMAGE/)) {