]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/comment.js
WordPress 4.1.1
[autoinstalls/wordpress.git] / wp-admin / js / comment.js
index 7d5055255b2fdcbc38b15e832b12c1b27ec24408..b5506ea8e1b323cd464e0998dbadeefffac863f1 100644 (file)
@@ -1,18 +1,19 @@
+/* global postboxes:true, commentL10n:true */
 jQuery(document).ready( function($) {
-       jQuery('.hide-if-no-js').show();
-       jQuery('.hide-if-js').hide();
+
+       postboxes.add_postbox_toggles('comment');
 
        var stamp = $('#timestamp').html();
        $('.edit-timestamp').click(function () {
-               if ($('#timestampdiv').is(":hidden")) {
-                       $('#timestampdiv').slideDown("normal");
+               if ($('#timestampdiv').is(':hidden')) {
+                       $('#timestampdiv').slideDown('normal');
                        $('.edit-timestamp').hide();
                }
                return false;
        });
 
        $('.cancel-timestamp').click(function() {
-               $('#timestampdiv').slideUp("normal");
+               $('#timestampdiv').slideUp('normal');
                $('#mm').val($('#hidden_mm').val());
                $('#jj').val($('#hidden_jj').val());
                $('#aa').val($('#hidden_aa').val());
@@ -24,16 +25,26 @@ jQuery(document).ready( function($) {
        });
 
        $('.save-timestamp').click(function () { // crazyhorse - multiple ok cancels
-               $('#timestampdiv').slideUp("normal");
+               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 );
+
+               if ( newD.getFullYear() != aa || (1 + newD.getMonth()) != mm || newD.getDate() != jj || newD.getMinutes() != mn ) {
+                       $('.timestamp-wrap', '#timestampdiv').addClass('form-invalid');
+                       return false;
+               } else {
+                       $('.timestamp-wrap', '#timestampdiv').removeClass('form-invalid');
+               }
+
+               $('#timestampdiv').slideUp('normal');
                $('.edit-timestamp').show();
                $('#timestamp').html(
                        commentL10n.submittedOn + ' <b>' +
-                       $( '#mm option[value=' + $('#mm').val() + ']' ).text() + ' ' +
-                       $('#jj').val() + ', ' +
-                       $('#aa').val() + ' @ ' +
-                       $('#hh').val() + ':' +
-                       $('#mn').val() + '</b> '
+                       $( '#mm option[value="' + mm + '"]' ).text() + ' ' +
+                       jj + ', ' +
+                       aa + ' @ ' +
+                       hh + ':' +
+                       mn + '</b> '
                );
                return false;
        });
-});
\ No newline at end of file
+});