mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-18 16:45:31 +01:00
e44e1b7202
git-svn-id: http://svn.automattic.com/wordpress/trunk@6961 1a063a9b-81f0-0310-95a4-ce76da25c4cd
19 lines
403 B
JavaScript
19 lines
403 B
JavaScript
addLoadEvent( function() {
|
|
add_postbox_toggles('page');
|
|
make_slugedit_clickable();
|
|
|
|
// hide advanced slug field
|
|
jQuery('#pageslugdiv').hide();
|
|
|
|
jQuery('#timestampdiv').css('display', 'none');
|
|
jQuery('.edit-timestamp').click(function () {
|
|
if (jQuery('#timestampdiv').is(":hidden")) {
|
|
jQuery('#timestampdiv').slideDown("normal");
|
|
} else {
|
|
jQuery('#timestampdiv').hide();
|
|
}
|
|
});
|
|
});
|
|
|
|
|