Changeset 32916
- Timestamp:
- 06/23/2015 07:42:50 PM (10 years ago)
- Location:
- trunk/src/wp-includes/js
- Files:
-
- 2 edited
-
media-models.js (modified) (1 diff)
-
media/models/attachments.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/media-models.js
r32915 r32916 901 901 902 902 if ( _.isArray( type ) ) { 903 found = _.find( type, function (t) {903 found = ! type.length || _.find( type, function (t) { 904 904 return -1 !== mime.indexOf( t ); 905 905 } ); -
trunk/src/wp-includes/js/media/models/attachments.js
r32915 r32916 497 497 498 498 if ( _.isArray( type ) ) { 499 found = _.find( type, function (t) {499 found = ! type.length || _.find( type, function (t) { 500 500 return -1 !== mime.indexOf( t ); 501 501 } );
Note: See TracChangeset
for help on using the changeset viewer.