change interval to 1000ms
authorRodney Ewing <ewing.rj@gmail.com>
Wed, 7 Aug 2013 23:58:06 +0000 (16:58 -0700)
committerRodney Ewing <ewing.rj@gmail.com>
Wed, 7 Aug 2013 23:58:06 +0000 (16:58 -0700)
mediagoblin/static/js/comment_show.js

index 42a218173ac7ba3d60f2bf21a38ba6580aacf264..df3c10930b1b46748b57dcbe5e0c13fe72904ea7 100644 (file)
@@ -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();
     });
   });