summaryrefslogtreecommitdiffstats
path: root/wp-admin/js/comment.js
blob: bde9b97feefa1051ac7709dfb7751695bf79d37a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
addLoadEvent( function() {
	add_postbox_toggles('comment');

	jQuery('.edit-timestamp').click(function () {
		if (jQuery('#timestampdiv').is(":hidden")) {
			jQuery('#timestampdiv').slideDown("normal");
		} else {
			jQuery('#timestampdiv').hide();
		}
		return false;
    });
});