Wordpress/wp-admin/js/comment.js
Ryan Boren 8a87674b60 Update edit comment form. WIP
git-svn-id: https://develop.svn.wordpress.org/trunk@6923 602fd350-edb4-49c9-b593-d223f7449a82
2008-02-20 02:41:16 +00:00

15 lines
304 B
JavaScript

addLoadEvent( function() {
add_postbox_toggles('comment');
jQuery('#timestamp').css('display', 'none');
jQuery('.edit-timestamp').click(function () {
if (jQuery('#timestamp').is(":hidden")) {
jQuery('#timestamp').slideDown("normal");
} else {
jQuery('#timestamp').hide();
}
});
});