mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-09 07:00:01 +00:00
Posts: Provide a HiDPI version for the avatar used in post locked dialogs.
Props wpdesk, audrasjb, ocean90. Fixes #39633. Built from https://develop.svn.wordpress.org/trunk@48318 git-svn-id: http://core.svn.wordpress.org/trunk@48087 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
618eeabba8
commit
56afcf2d68
@ -1053,9 +1053,9 @@ function wp_check_locked_posts( $response, $data, $screen_id ) {
|
|||||||
'text' => sprintf( __( '%s is currently editing' ), $user->display_name ),
|
'text' => sprintf( __( '%s is currently editing' ), $user->display_name ),
|
||||||
);
|
);
|
||||||
|
|
||||||
$avatar = get_avatar( $user->ID, 18 );
|
if ( get_option( 'show_avatars' ) ) {
|
||||||
if ( $avatar && preg_match( "|src='([^']+)'|", $avatar, $matches ) ) {
|
$send['avatar_src'] = get_avatar_url( $user->ID, array( 'size' => 18 ) );
|
||||||
$send['avatar_src'] = $matches[1];
|
$send['avatar_src_2x'] = get_avatar_url( $user->ID, array( 'size' => 36 ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
$checked[ $key ] = $send;
|
$checked[ $key ] = $send;
|
||||||
@ -1103,11 +1103,9 @@ function wp_refresh_post_lock( $response, $data, $screen_id ) {
|
|||||||
'text' => sprintf( __( '%s has taken over and is currently editing.' ), $user->display_name ),
|
'text' => sprintf( __( '%s has taken over and is currently editing.' ), $user->display_name ),
|
||||||
);
|
);
|
||||||
|
|
||||||
$avatar = get_avatar( $user->ID, 64 );
|
if ( get_option( 'show_avatars' ) ) {
|
||||||
if ( $avatar ) {
|
$error['avatar_src'] = get_avatar_url( $user->ID, array( 'size' => 64 ) );
|
||||||
if ( preg_match( "|src='([^']+)'|", $avatar, $matches ) ) {
|
$error['avatar_src_2x'] = get_avatar_url( $user->ID, array( 'size' => 128 ) );
|
||||||
$error['avatar_src'] = $matches[1];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$send['lock_error'] = $error;
|
$send['lock_error'] = $error;
|
||||||
|
@ -529,7 +529,14 @@ $( document ).on( 'heartbeat-tick.wp-check-locked-posts', function( e, data ) {
|
|||||||
row.find('.check-column checkbox').prop('checked', false);
|
row.find('.check-column checkbox').prop('checked', false);
|
||||||
|
|
||||||
if ( lock_data.avatar_src ) {
|
if ( lock_data.avatar_src ) {
|
||||||
avatar = $( '<img class="avatar avatar-18 photo" width="18" height="18" alt="" />' ).attr( 'src', lock_data.avatar_src.replace( /&/g, '&' ) );
|
avatar = $( '<img />', {
|
||||||
|
'class': 'avatar avatar-18 photo',
|
||||||
|
width: 18,
|
||||||
|
height: 18,
|
||||||
|
alt: '',
|
||||||
|
src: lock_data.avatar_src,
|
||||||
|
srcset: lock_data.avatar_src_2x ? lock_data.avatar_src_2x + ' 2x' : undefined
|
||||||
|
} );
|
||||||
row.find('.column-title .locked-avatar').empty().append( avatar );
|
row.find('.column-title .locked-avatar').empty().append( avatar );
|
||||||
}
|
}
|
||||||
row.addClass('wp-locked');
|
row.addClass('wp-locked');
|
||||||
|
2
wp-admin/js/inline-edit-post.min.js
vendored
2
wp-admin/js/inline-edit-post.min.js
vendored
File diff suppressed because one or more lines are too long
@ -200,7 +200,14 @@ window.wp = window.wp || {};
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ( received.lock_error.avatar_src ) {
|
if ( received.lock_error.avatar_src ) {
|
||||||
avatar = $( '<img class="avatar avatar-64 photo" width="64" height="64" alt="" />' ).attr( 'src', received.lock_error.avatar_src.replace( /&/g, '&' ) );
|
avatar = $( '<img />', {
|
||||||
|
'class': 'avatar avatar-64 photo',
|
||||||
|
width: 64,
|
||||||
|
height: 64,
|
||||||
|
alt: '',
|
||||||
|
src: received.lock_error.avatar_src,
|
||||||
|
srcset: received.lock_error.avatar_src_2x ? received.lock_error.avatar_src_2x + ' 2x' : undefined
|
||||||
|
} );
|
||||||
wrap.find('div.post-locked-avatar').empty().append( avatar );
|
wrap.find('div.post-locked-avatar').empty().append( avatar );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
2
wp-admin/js/post.min.js
vendored
2
wp-admin/js/post.min.js
vendored
File diff suppressed because one or more lines are too long
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.5-alpha-48317';
|
$wp_version = '5.5-alpha-48318';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user