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:
parent
4fd715c937
commit
0adec3db8a
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user