mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-24 01:57:53 +01:00
9e349220b5
git-svn-id: http://svn.automattic.com/wordpress/trunk@6923 1a063a9b-81f0-0310-95a4-ce76da25c4cd
15 lines
304 B
JavaScript
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();
|
|
}
|
|
});
|
|
});
|
|
|
|
|