Fix enourmous video bug

pull/21833/head
David Baker 2016-07-20 11:58:49 +01:00
parent 2190dcbe1e
commit d6df3682f2
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ module.exports = React.createClass({
}
if (fullWidth < thumbWidth && fullHeight < thumbHeight) {
// no scaling needs to be applied
return fullHeight;
return 1;
}
var widthMulti = thumbWidth / fullWidth;
var heightMulti = thumbHeight / fullHeight;