Makes sure attachment sizes are correctly deselected in IE. Fixes size selections on insert in IE9. props koopersmith. fixes #22851. for the 3.5 branch.

git-svn-id: http://core.svn.wordpress.org/branches/3.5@23164 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2012-12-10 23:17:14 +00:00
parent 15adfa5298
commit ae22cf1471
1 changed files with 2 additions and 1 deletions

View File

@ -3900,10 +3900,11 @@
$value = $setting.find('[value="' + value + '"]'); $value = $setting.find('[value="' + value + '"]');
if ( $value.length ) { if ( $value.length ) {
$setting.find('option').prop( 'selected', false );
$value.prop( 'selected', true ); $value.prop( 'selected', true );
} else { } else {
// If we can't find the desired value, record what *is* selected. // If we can't find the desired value, record what *is* selected.
this.model.set( $setting.data('setting'), $setting.find(':selected').val() ); this.model.set( key, $setting.find(':selected').val() );
} }