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:
parent
9ceb642b2a
commit
54915274fa
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue