mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 18:32:23 +01:00
7d06b85a36
git-svn-id: http://svn.automattic.com/wordpress/trunk@6904 1a063a9b-81f0-0310-95a4-ce76da25c4cd
16 lines
329 B
JavaScript
16 lines
329 B
JavaScript
addLoadEvent( function() {
|
|
add_postbox_toggles('page');
|
|
make_slugedit_clickable();
|
|
|
|
jQuery('#timestamp').css('display', 'none');
|
|
jQuery('.edit-timestamp').click(function () {
|
|
if (jQuery('#timestamp').is(":hidden")) {
|
|
jQuery('#timestamp').slideDown("normal");
|
|
} else {
|
|
jQuery('#timestamp').hide();
|
|
}
|
|
});
|
|
});
|
|
|
|
|