WordPress/wp-admin/js/comment.js

15 lines
304 B
JavaScript
Raw Normal View History

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