In wp.media.view.UploaderStatus.filename(), don't truncate the filename.

Props helen.
Fixes #31216.

Built from https://develop.svn.wordpress.org/trunk@32908


git-svn-id: http://core.svn.wordpress.org/trunk@32879 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2015-06-22 21:26:26 +00:00
parent 994881d211
commit 8c7e1b8ac0
3 changed files with 3 additions and 3 deletions

View File

@ -8226,7 +8226,7 @@ UploaderStatus = View.extend({
* @returns {string}
*/
filename: function( filename ) {
return wp.media.truncate( _.escape( filename ), 24 );
return _.escape( filename );
},
/**
* @param {Backbone.Model} error

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-alpha-32907';
$wp_version = '4.3-alpha-32908';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.