Ticket #60139: 60139.diff
| File 60139.diff, 2.7 KB (added by , 2 years ago) |
|---|
-
src/js/_enqueues/admin/media.js
223 223 224 224 // Clear the selection and move focus back to the trigger. 225 225 event.clearSelection(); 226 // Handle ClipboardJS focus bug, see https://github.com/zenorocha/clipboard.js/issues/680.227 triggerElement.trigger( 'focus' );228 226 229 227 // Show success visual feedback. 230 228 clearTimeout( copyAttachmentURLSuccessTimeout ); -
src/js/_enqueues/admin/post.js
1303 1303 1304 1304 // Clear the selection and move focus back to the trigger. 1305 1305 event.clearSelection(); 1306 // Handle ClipboardJS focus bug, see https://github.com/zenorocha/clipboard.js/issues/6801307 triggerElement.trigger( 'focus' );1308 1306 1309 1307 // Show success visual feedback. 1310 1308 clearTimeout( copyAttachmentURLSuccessTimeout ); -
src/js/_enqueues/admin/site-health.js
26 26 27 27 // Clear the selection and move focus back to the trigger. 28 28 e.clearSelection(); 29 // Handle ClipboardJS focus bug, see https://github.com/zenorocha/clipboard.js/issues/68030 triggerElement.trigger( 'focus' );31 29 32 30 // Show success visual feedback. 33 31 clearTimeout( successTimeout ); -
src/js/_enqueues/vendor/plupload/handlers.js
380 380 381 381 // Clear the selection and move focus back to the trigger. 382 382 event.clearSelection(); 383 // Handle ClipboardJS focus bug, see https://github.com/zenorocha/clipboard.js/issues/680384 triggerElement.trigger( 'focus' );385 383 // Show success visual feedback. 386 384 clearTimeout( successTimeout ); 387 385 successElement.removeClass( 'hidden' ); -
src/js/media/views/attachment/details.js
47 47 48 48 // Clear the selection and move focus back to the trigger. 49 49 event.clearSelection(); 50 // Handle ClipboardJS focus bug, see https://github.com/zenorocha/clipboard.js/issues/68051 triggerElement.trigger( 'focus' );52 50 53 51 // Show success visual feedback. 54 52 clearTimeout( successTimeout );