Seperate jQuery bit that was still in media.html
[mediagoblin.git] / mediagoblin / static / js / comment_show.js
1 $(document).ready(function(){
2 $('#form_comment').hide();
3 $('#button_addcomment').click(function(){
4 $(this).fadeOut('fast');
5 $('#form_comment').slideDown(function(){
6 $('#comment_content').focus();
7 });
8 });
9 });