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

Props Fab1en.
See #28190.

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


git-svn-id: http://core.svn.wordpress.org/trunk@28616 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2014-06-23 20:35:18 +00:00
parent 9ceb642b2a
commit 54915274fa
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 ) {
h = Math.ceil( ( h * w ) / data.model.width );
h = Math.ceil( ( data.model.height * w ) / data.model.width );
} else {
h = data.model.height;
}