af4c2613d4
git-svn-id: https://develop.svn.wordpress.org/trunk@6904 602fd350-edb4-49c9-b593-d223f7449a82
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();
|
|
}
|
|
});
|
|
});
|
|
|
|
|