mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
e6f396880b
git-svn-id: http://svn.automattic.com/wordpress/trunk@7529 1a063a9b-81f0-0310-95a4-ce76da25c4cd
26 lines
897 B
JavaScript
26 lines
897 B
JavaScript
jQuery(document).ready( function() {
|
|
add_postbox_toggles('comment');
|
|
|
|
// close postboxes that should be closed
|
|
jQuery('.if-js-closed').removeClass('if-js-closed').addClass('closed');
|
|
|
|
// show things that should be visible, hide what should be hidden
|
|
jQuery('.hide-if-no-js').show();
|
|
jQuery('.hide-if-js').hide();
|
|
|
|
jQuery('.edit-timestamp').click(function () {
|
|
if (jQuery('#timestampdiv').is(":hidden")) {
|
|
jQuery('#timestampdiv').slideDown("normal");
|
|
jQuery('.edit-timestamp').text(commentL10n.cancel);
|
|
} else {
|
|
jQuery('#timestampdiv').hide();
|
|
jQuery('#mm').val(jQuery('#hidden_mm').val());
|
|
jQuery('#jj').val(jQuery('#hidden_jj').val());
|
|
jQuery('#aa').val(jQuery('#hidden_aa').val());
|
|
jQuery('#hh').val(jQuery('#hidden_hh').val());
|
|
jQuery('#mn').val(jQuery('#hidden_mn').val());
|
|
jQuery('.edit-timestamp').text(commentL10n.edit);
|
|
}
|
|
return false;
|
|
});
|
|
}); |