mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 17:48:01 +01:00
Populate playlist setting values with their default value if they don't exist while parsing shortcode attributes.
Props kovshenin. See #26631. Built from https://develop.svn.wordpress.org/trunk@27308 git-svn-id: http://core.svn.wordpress.org/trunk@27161 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d55eb3901c
commit
8a4ef32f7a
@ -396,6 +396,10 @@
|
||||
|
||||
if ( -1 !== jQuery.inArray( prop, ['playlist', 'video-playlist'] ) ) {
|
||||
_.each(['tracknumbers', 'tracklist', 'images', 'artists'], function (setting) {
|
||||
if ( 'undefined' === typeof attrs[ '_' + setting ] ) {
|
||||
attrs[ '_' + setting ] = wp.media[ prop ].defaults[ setting ];
|
||||
}
|
||||
|
||||
if ( attrs['_' + setting] ) {
|
||||
attrs[setting] = true;
|
||||
} else {
|
||||
|
2
wp-includes/js/media-editor.min.js
vendored
2
wp-includes/js/media-editor.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user