Media: Fix improper use of jQuery `hasClass` method.
The jQuery `hasClass` method accepts a class name without a prefix '.' (period). Remove an errant class name with a '.' in `wp-mediaelement.js` that broke the selector in certain circumstances. Props kostasx, Presskopp. Fixes #40354. git-svn-id: https://develop.svn.wordpress.org/trunk@40659 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
b2018dc679
commit
0f0c850723
|
@ -44,7 +44,7 @@
|
||||||
$( '.wp-audio-shortcode, .wp-video-shortcode' )
|
$( '.wp-audio-shortcode, .wp-video-shortcode' )
|
||||||
.not( '.mejs-container' )
|
.not( '.mejs-container' )
|
||||||
.filter(function () {
|
.filter(function () {
|
||||||
return ! $( this ).parent().hasClass( '.mejs-mediaelement' );
|
return ! $( this ).parent().hasClass( 'mejs-mediaelement' );
|
||||||
})
|
})
|
||||||
.mediaelementplayer( settings );
|
.mediaelementplayer( settings );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue