|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
jQuery( function($) { |
|
|
|
postboxes.add_postbox_toggles('comment'); |
|
|
|
var $timestampdiv = $('#timestampdiv'), |
|
$timestamp = $( '#timestamp' ), |
|
stamp = $timestamp.html(), |
|
$timestampwrap = $timestampdiv.find( '.timestamp-wrap' ), |
|
$edittimestamp = $timestampdiv.siblings( 'a.edit-timestamp' ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$edittimestamp.on( 'click', function( event ) { |
|
if ( $timestampdiv.is( ':hidden' ) ) { |
|
|
|
$timestampdiv.slideDown( 'fast', function() { |
|
$( 'input, select', $timestampwrap ).first().trigger( 'focus' ); |
|
} ); |
|
$(this).hide(); |
|
} |
|
event.preventDefault(); |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$timestampdiv.find('.cancel-timestamp').on( 'click', function( event ) { |
|
|
|
$edittimestamp.show().trigger( 'focus' ); |
|
$timestampdiv.slideUp( 'fast' ); |
|
$('#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 ); |
|
event.preventDefault(); |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$timestampdiv.find('.save-timestamp').on( 'click', function( event ) { |
|
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 ) { |
|
$timestampwrap.addClass( 'form-invalid' ); |
|
return; |
|
} else { |
|
$timestampwrap.removeClass( 'form-invalid' ); |
|
} |
|
|
|
$timestamp.html( |
|
wp.i18n.__( 'Submitted on:' ) + ' <b>' + |
|
|
|
wp.i18n.__( '%1$s %2$s, %3$s at %4$s:%5$s' ) |
|
.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> ' |
|
); |
|
|
|
|
|
$edittimestamp.show().trigger( 'focus' ); |
|
$timestampdiv.slideUp( 'fast' ); |
|
}); |
|
}); |
|
|