aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/static/js
diff options
context:
space:
mode:
authorRodney Ewing <ewing.rj@gmail.com>2013-08-07 16:58:06 -0700
committerRodney Ewing <ewing.rj@gmail.com>2013-08-07 16:58:06 -0700
commitb2d6c45850a7627110a464e398b82f1e3a79e9a4 (patch)
treeaf8ca2df01530e21daae8ae9acfddb055132a6f8 /mediagoblin/static/js
parent3bd62dc4ca4fb12c772729bbb9dd6a78c3c08e48 (diff)
downloadmediagoblin-b2d6c45850a7627110a464e398b82f1e3a79e9a4.tar.lz
mediagoblin-b2d6c45850a7627110a464e398b82f1e3a79e9a4.tar.xz
mediagoblin-b2d6c45850a7627110a464e398b82f1e3a79e9a4.zip
change interval to 1000ms
Diffstat (limited to 'mediagoblin/static/js')
-rw-r--r--mediagoblin/static/js/comment_show.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/static/js/comment_show.js b/mediagoblin/static/js/comment_show.js
index 42a21817..df3c1093 100644
--- a/mediagoblin/static/js/comment_show.js
+++ b/mediagoblin/static/js/comment_show.js
@@ -33,7 +33,7 @@ $(document).ready(function(){
$('#button_addcomment').click(function(){
$(this).fadeOut('fast');
$('#form_comment').slideDown(function(){
- setInterval("previewComment()",500);
+ setInterval("previewComment()",1000);
$('#comment_content').focus();
});
});