d3610be6ed
git-svn-id: https://develop.svn.wordpress.org/trunk@6975 602fd350-edb4-49c9-b593-d223f7449a82
17 lines
416 B
JavaScript
17 lines
416 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();
|
|
}
|
|
return false;
|
|
});
|
|
}); |