change interval to 1000ms

This commit is contained in:
Rodney Ewing 2013-08-07 16:58:06 -07:00
parent 3bd62dc4ca
commit b2d6c45850

View 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();
});
});