mirror of
git://develop.git.wordpress.org/
synced 2025-04-04 20:23:27 +02:00
Media: Add "webp" extension to wp.media.controller.Library isImageAttachment
.
Add "webp" extension to a media extension check, fixing an issue where the last used media link type was not used for WebP images. Props almendron, desrosj, kallookoo. Fixes #53917. git-svn-id: https://develop.svn.wordpress.org/trunk@52073 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
04cd9e2db2
commit
2e911f4f16
@ -196,7 +196,7 @@ Library = wp.media.controller.State.extend(/** @lends wp.media.controller.Librar
|
||||
isImageAttachment: function( attachment ) {
|
||||
// If uploading, we know the filename but not the mime type.
|
||||
if ( attachment.get('uploading') ) {
|
||||
return /\.(jpe?g|png|gif)$/i.test( attachment.get('filename') );
|
||||
return /\.(jpe?g|png|gif|webp)$/i.test( attachment.get('filename') );
|
||||
}
|
||||
|
||||
return attachment.get('type') === 'image';
|
||||
|
Loading…
x
Reference in New Issue
Block a user