]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/comment.js
Wordpress 2.7.1
[autoinstalls/wordpress.git] / wp-admin / js / comment.js
index 11a362765cdaecc1b9d603ad51fedad1a488b8e1..7d5055255b2fdcbc38b15e832b12c1b27ec24408 100644 (file)
@@ -1,26 +1,39 @@
-jQuery(document).ready( function() {
-       add_postbox_toggles('comment');
-
-       // close postboxes that should be closed
-       jQuery('.if-js-closed').removeClass('if-js-closed').addClass('closed');
-
-       // show things that should be visible, hide what should be hidden
+jQuery(document).ready( function($) {
        jQuery('.hide-if-no-js').show();
        jQuery('.hide-if-js').hide();
 
-       jQuery('.edit-timestamp').click(function () {
-               if (jQuery('#timestampdiv').is(":hidden")) {
-                       jQuery('#timestampdiv').slideDown("normal");
-                       jQuery('.edit-timestamp').text(commentL10n.cancel);
-               } 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);
+       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
+               $('#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> '
+               );
+               return false;
+       });
 });
\ No newline at end of file