Move counting of attachments for audio/video to the backend, instead of using a reduce function in JS.
See #27554. Built from https://develop.svn.wordpress.org/trunk@27788 git-svn-id: http://core.svn.wordpress.org/trunk@27624 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -902,50 +902,6 @@
|
||||
}
|
||||
});
|
||||
|
||||
_.extend( wp.media.playlist, {
|
||||
/**
|
||||
* Determine how many audio and video files the user has uploaded
|
||||
*
|
||||
* @global wp.media.view.settings
|
||||
*
|
||||
* @param {Object} settings
|
||||
* @returns {Object}
|
||||
*/
|
||||
counts : (function(settings) {
|
||||
var counts = {};
|
||||
|
||||
return function() {
|
||||
if ( ! _.isEmpty( counts ) ) {
|
||||
return counts;
|
||||
}
|
||||
|
||||
var a = 0, v = 0;
|
||||
_.each( settings.attachmentCounts, function(total, mime) {
|
||||
var type;
|
||||
if ( -1 < mime.indexOf('/') ) {
|
||||
type = mime.split('/')[0];
|
||||
|
||||
total = parseInt(total, 10);
|
||||
|
||||
switch ( type ) {
|
||||
case 'audio':
|
||||
a += total;
|
||||
break;
|
||||
case 'video':
|
||||
v += total;
|
||||
break;
|
||||
}
|
||||
}
|
||||
} );
|
||||
|
||||
counts.audio = a;
|
||||
counts.video = v;
|
||||
|
||||
return counts;
|
||||
};
|
||||
}(media.view.settings))
|
||||
} );
|
||||
|
||||
/**
|
||||
* Event binding
|
||||
*/
|
||||
|
||||
2
wp-includes/js/media-audiovideo.min.js
vendored
2
wp-includes/js/media-audiovideo.min.js
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user