Edit image modal: check if full size exists before trying to use it for setting aspect ratio, props gcorne, see #27366

git-svn-id: https://develop.svn.wordpress.org/trunk@27948 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2014-04-04 18:00:04 +00:00
parent 6ec7a5a52b
commit 63bf25ec1f

View File

@ -472,7 +472,7 @@ window.wp = window.wp || {};
setAspectRatio: function() { setAspectRatio: function() {
var full; var full;
if ( this.attachment ) { if ( this.attachment && this.attachment.get( 'sizes' ) ) {
full = this.attachment.get( 'sizes' ).full; full = this.attachment.get( 'sizes' ).full;
if ( full ) { if ( full ) {