]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/comment.js
WordPress 4.2.4
[autoinstalls/wordpress.git] / wp-admin / js / comment.js
index ac65c92fa7880c9366d5baee2fb179d0b1433c57..b5506ea8e1b323cd464e0998dbadeefffac863f1 100644 (file)
@@ -1 +1,50 @@
-jQuery(document).ready(function(b){var a=b("#timestamp").html();b(".edit-timestamp").click(function(){if(b("#timestampdiv").is(":hidden")){b("#timestampdiv").slideDown("normal");b(".edit-timestamp").hide()}return false});b(".cancel-timestamp").click(function(){b("#timestampdiv").slideUp("normal");b("#mm").val(b("#hidden_mm").val());b("#jj").val(b("#hidden_jj").val());b("#aa").val(b("#hidden_aa").val());b("#hh").val(b("#hidden_hh").val());b("#mn").val(b("#hidden_mn").val());b("#timestamp").html(a);b(".edit-timestamp").show();return false});b(".save-timestamp").click(function(){b("#timestampdiv").slideUp("normal");b(".edit-timestamp").show();b("#timestamp").html(commentL10n.submittedOn+" <b>"+b("#mm option[value="+b("#mm").val()+"]").text()+" "+b("#jj").val()+", "+b("#aa").val()+" @ "+b("#hh").val()+":"+b("#mn").val()+"</b> ");return false})});
\ No newline at end of file
+/* global postboxes:true, commentL10n:true */
+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();
+               }
+               return false;
+       });
+
+       $('.cancel-timestamp').click(function() {
+               $('#timestampdiv').slideUp('normal');
+               $('#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;
+       });
+
+       $('.save-timestamp').click(function () { // 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 );
+
+               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 + '"]' ).text() + ' ' +
+                       jj + ', ' +
+                       aa + ' @ ' +
+                       hh + ':' +
+                       mn + '</b> '
+               );
+               return false;
+       });
+});