mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-05-21 19:54:32 +00:00
Publish box: apply changes post.js to comment.js
See [22250], [27035], [24046], [33340] and [33341]. Fixes #33063. git-svn-id: https://develop.svn.wordpress.org/trunk@33348 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -3,48 +3,54 @@ jQuery(document).ready( function($) {
|
||||
|
||||
postboxes.add_postbox_toggles('comment');
|
||||
|
||||
var stamp = $('#timestamp').html();
|
||||
$('.edit-timestamp').click(function () {
|
||||
if ($('#timestampdiv').is(':hidden')) {
|
||||
$('#timestampdiv').slideDown('normal');
|
||||
$('.edit-timestamp').hide();
|
||||
var $timestampdiv = $('#timestampdiv'),
|
||||
stamp = $('#timestamp').html();
|
||||
|
||||
$timestampdiv.siblings('a.edit-timestamp').click( function( event ) {
|
||||
if ( $timestampdiv.is( ':hidden' ) ) {
|
||||
$timestampdiv.slideDown('fast');
|
||||
$('#mm').focus();
|
||||
$(this).hide();
|
||||
}
|
||||
return false;
|
||||
event.preventDefault();
|
||||
});
|
||||
|
||||
$('.cancel-timestamp').click(function() {
|
||||
$('#timestampdiv').slideUp('normal');
|
||||
$timestampdiv.find('.cancel-timestamp').click( function( event ) {
|
||||
$timestampdiv.slideUp('fast').siblings('a.edit-timestamp').show().focus();
|
||||
$('#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;
|
||||
event.preventDefault();
|
||||
});
|
||||
|
||||
$('.save-timestamp').click(function () { // crazyhorse - multiple ok cancels
|
||||
$timestampdiv.find('.save-timestamp').click( function( event ) { // crazyhorse - multiple ok cancels
|
||||
var aa = $('#aa').val(), mm = $('#mm').val(), jj = $('#jj').val(), hh = $('#hh').val(), mn = $('#mn').val(),
|
||||
newD = new Date( aa, mm - 1, jj, hh, mn );
|
||||
|
||||
event.preventDefault();
|
||||
|
||||
if ( newD.getFullYear() != aa || (1 + newD.getMonth()) != mm || newD.getDate() != jj || newD.getMinutes() != mn ) {
|
||||
$('.timestamp-wrap', '#timestampdiv').addClass('form-invalid');
|
||||
return false;
|
||||
$timestampdiv.find('.timestamp-wrap').addClass('form-invalid');
|
||||
return;
|
||||
} else {
|
||||
$('.timestamp-wrap', '#timestampdiv').removeClass('form-invalid');
|
||||
$timestampdiv.find('.timestamp-wrap').removeClass('form-invalid');
|
||||
}
|
||||
|
||||
$('#timestampdiv').slideUp('normal');
|
||||
$('.edit-timestamp').show();
|
||||
$('#timestamp').html(
|
||||
commentL10n.submittedOn + ' <b>' +
|
||||
$( '#mm option[value="' + mm + '"]' ).text() + ' ' +
|
||||
jj + ', ' +
|
||||
aa + ' @ ' +
|
||||
hh + ':' +
|
||||
mn + '</b> '
|
||||
commentL10n.dateFormat
|
||||
.replace( '%1$s', $( 'option[value="' + mm + '"]', '#mm' ).attr( 'data-text' ) )
|
||||
.replace( '%2$s', parseInt( jj, 10 ) )
|
||||
.replace( '%3$s', aa )
|
||||
.replace( '%4$s', ( '00' + hh ).slice( -2 ) )
|
||||
.replace( '%5$s', ( '00' + mn ).slice( -2 ) ) +
|
||||
'</b> '
|
||||
);
|
||||
return false;
|
||||
|
||||
$timestampdiv.slideUp('fast');
|
||||
$timestampdiv.siblings('a.edit-timestamp').show();
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user