From b2d6c45850a7627110a464e398b82f1e3a79e9a4 Mon Sep 17 00:00:00 2001 From: Rodney Ewing Date: Wed, 7 Aug 2013 16:58:06 -0700 Subject: [PATCH] change interval to 1000ms --- mediagoblin/static/js/comment_show.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }); }); -- 2.25.1