]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/comment.js
WordPress 4.3
[autoinstalls/wordpress.git] / wp-admin / js / comment.js
index 11a362765cdaecc1b9d603ad51fedad1a488b8e1..d194148f60d704f947d93d098a30844bd23070cb 100644 (file)
@@ -1,26 +1,63 @@
-jQuery(document).ready( function() {
-       add_postbox_toggles('comment');
+/* global postboxes, commentL10n */
+jQuery(document).ready( function($) {
 
-       // close postboxes that should be closed
-       jQuery('.if-js-closed').removeClass('if-js-closed').addClass('closed');
+       postboxes.add_postbox_toggles('comment');
 
-       // show things that should be visible, hide what should be hidden
-       jQuery('.hide-if-no-js').show();
-       jQuery('.hide-if-js').hide();
+       var $timestampdiv = $('#timestampdiv'),
+               $timestamp = $( '#timestamp' ),
+               stamp = $timestamp.html(),
+               $timestampwrap = $timestampdiv.find( '.timestamp-wrap' ),
+               $edittimestamp = $timestampdiv.siblings( 'a.edit-timestamp' );
 
-       jQuery('.edit-timestamp').click(function () {
-               if (jQuery('#timestampdiv').is(":hidden")) {
-                       jQuery('#timestampdiv').slideDown("normal");
-                       jQuery('.edit-timestamp').text(commentL10n.cancel);
+       $edittimestamp.click( function( event ) {
+               if ( $timestampdiv.is( ':hidden' ) ) {
+                       $timestampdiv.slideDown( 'fast', function() {
+                               $( 'input, select', $timestampwrap ).first().focus();
+                       } );
+                       $(this).hide();
+               }
+               event.preventDefault();
+       });
+
+       $timestampdiv.find('.cancel-timestamp').click( function( event ) {
+               // Move focus back to the Edit link.
+               $edittimestamp.show().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').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 ) {
+                       $timestampwrap.addClass( 'form-invalid' );
+                       return;
                } 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);
+                       $timestampwrap.removeClass( 'form-invalid' );
                }
-               return false;
-    });
-});
\ No newline at end of file
+
+               $timestamp.html(
+                       commentL10n.submittedOn + ' <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> '
+               );
+
+               // Move focus back to the Edit link.
+               $edittimestamp.show().focus();
+               $timestampdiv.slideUp( 'fast' );
+       });
+});