mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
b10412eab9
git-svn-id: http://svn.automattic.com/wordpress/trunk@8988 1a063a9b-81f0-0310-95a4-ce76da25c4cd
77 lines
2.0 KiB
JavaScript
77 lines
2.0 KiB
JavaScript
jQuery(document).ready( function($) {
|
|
postboxes.add_postbox_toggles('page');
|
|
make_slugedit_clickable();
|
|
|
|
// close postboxes that should be closed
|
|
jQuery('.if-js-closed').removeClass('if-js-closed').addClass('closed');
|
|
|
|
jQuery('#title').blur( function() { if ( (jQuery("#post_ID").val() > 0) || (jQuery("#title").val().length == 0) ) return; autosave(); } );
|
|
|
|
// hide advanced slug field
|
|
jQuery('#pageslugdiv').hide();
|
|
|
|
var stamp = $('#timestamp').html();
|
|
|
|
$('.edit-timestamp').click(function () {
|
|
if ($('#timestampdiv').is(":hidden")) {
|
|
$('#timestampdiv').slideDown("normal");
|
|
$('.edit-timestamp').hide();
|
|
}
|
|
|
|
return false;
|
|
});
|
|
|
|
$('.cancel-timestamp').click(function() {
|
|
$('#timestampdiv').slideUp("normal");
|
|
$('#mm').val($('#hidden_mm').val());
|
|
$('#jj').val($('#hidden_jj').val());
|
|
$('#aa').val($('#hidden_aa').val());
|
|
$('#hh').val($('#hidden_hh').val());
|
|
$('#mn').val($('#hidden_mn').val());
|
|
$('#timestamp').html(stamp);
|
|
$('.edit-timestamp').show();
|
|
|
|
return false;
|
|
});
|
|
|
|
$('.save-timestamp').click(function () { // crazyhorse - multiple ok cancels
|
|
$('#timestampdiv').slideUp("normal");
|
|
$('.edit-timestamp').show();
|
|
$('#timestamp').html(
|
|
$( '#mm option[value=' + $('#mm').val() + ']' ).text() + ' ' +
|
|
$('#jj').val() + ', ' +
|
|
$('#aa').val() + ' @ ' +
|
|
$('#hh').val() + ':' +
|
|
$('#mn').val() + ' '
|
|
);
|
|
|
|
return false;
|
|
});
|
|
|
|
$('.edit-post-status').click(function() {
|
|
if ($('#post-status-select').is(":hidden")) {
|
|
$('#post-status-select').slideDown("normal");
|
|
$(this).hide();
|
|
}
|
|
|
|
return false;
|
|
});
|
|
|
|
$('.save-post-status').click(function() {
|
|
$('#post-status-select').slideUp("normal");
|
|
$('#post-status-display').html($('#post_status :selected').text());
|
|
$('.edit-post-status').show();
|
|
|
|
return false;
|
|
});
|
|
|
|
$('.cancel-post-status').click(function() {
|
|
$('#post-status-select').slideUp("normal");
|
|
$('#post_status').val($('#hidden_post_status').val());
|
|
$('#post-status-display').html($('#post_status :selected').text());
|
|
$('.edit-post-status').show();
|
|
|
|
return false;
|
|
});
|
|
});
|