Use the proper height property when calculating video size in `wp_underscore_video_template()`.

Props Fab1en.
See #28190.


git-svn-id: https://develop.svn.wordpress.org/trunk@28807 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2014-06-23 20:34:14 +00:00
parent 4fd715c937
commit 0adec3db8a
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ function wp_underscore_video_template() {
} }
if ( w !== data.model.width ) { if ( w !== data.model.width ) {
h = Math.ceil( ( h * w ) / data.model.width ); h = Math.ceil( ( data.model.height * w ) / data.model.width );
} else { } else {
h = data.model.height; h = data.model.height;
} }