summaryrefslogtreecommitdiffstats
path: root/wp-admin/js/post.js
diff options
context:
space:
mode:
Diffstat (limited to 'wp-admin/js/post.js')
-rw-r--r--wp-admin/js/post.js10
1 files changed, 4 insertions, 6 deletions
diff --git a/wp-admin/js/post.js b/wp-admin/js/post.js
index a86ea4c..557465b 100644
--- a/wp-admin/js/post.js
+++ b/wp-admin/js/post.js
@@ -889,7 +889,7 @@ jQuery( function($) {
});
// Set the selected visibility as current.
- $postVisibilitySelect.find('.save-post-visibility').on( 'click', function( event ) { // Crazyhorse - multiple OK cancels.
+ $postVisibilitySelect.find('.save-post-visibility').on( 'click', function( event ) { // Crazyhorse branch - multiple OK cancels.
var visibilityLabel = '', selectedVisibility = $postVisibilitySelect.find('input:radio:checked').val();
$postVisibilitySelect.slideUp('fast');
@@ -945,7 +945,7 @@ jQuery( function($) {
});
// Save the changed timestamp.
- $timestampdiv.find('.save-timestamp').on( 'click', function( event ) { // Crazyhorse - multiple OK cancels.
+ $timestampdiv.find('.save-timestamp').on( 'click', function( event ) { // Crazyhorse branch - multiple OK cancels.
if ( updateText() ) {
$timestampdiv.slideUp('fast');
$timestampdiv.siblings('a.edit-timestamp').show().trigger( 'focus' );
@@ -1173,7 +1173,7 @@ jQuery( function($) {
}
/**
- * When the dragging stopped make sure we return focus and do a sanity check on the height.
+ * When the dragging stopped make sure we return focus and do a confidence check on the height.
*/
function endDrag() {
var height, toolbarHeight;
@@ -1198,7 +1198,7 @@ jQuery( function($) {
$document.off( '.wp-editor-resize' );
- // Sanity check: normalize height to stay within acceptable ranges.
+ // Confidence check: normalize height to stay within acceptable ranges.
if ( height && height > 50 && height < 5000 ) {
setUserSetting( 'ed_size', height );
}
@@ -1303,8 +1303,6 @@ jQuery( function($) {
// Clear the selection and move focus back to the trigger.
event.clearSelection();
- // Handle ClipboardJS focus bug, see https://github.com/zenorocha/clipboard.js/issues/680
- triggerElement.trigger( 'focus' );
// Show success visual feedback.
clearTimeout( copyAttachmentURLSuccessTimeout );