Browse Source

No longer set height of container making the own video always flow to the bottom.

pull/23/head
Simon Eisenmann 11 years ago
parent
commit
ef0505be5c
  1. 3
      static/js/directives/audiovideo.js

3
static/js/directives/audiovideo.js

@ -294,7 +294,6 @@ define(['jquery', 'underscore', 'text!partials/audiovideo.html', 'text!partials/ @@ -294,7 +294,6 @@ define(['jquery', 'underscore', 'text!partials/audiovideo.html', 'text!partials/
var newVideoWidth = innerWidth < aspectRatio * innerHeight ? innerWidth : aspectRatio * innerHeight;
var newVideoHeight = innerHeight < innerWidth / aspectRatio ? innerHeight : innerWidth / aspectRatio;
container.style.width = newVideoWidth + 'px';
container.style.height = newVideoHeight + 'px';
container.style.left = ((innerWidth - newVideoWidth) / 2) + 'px';
var extraCSS = {};
} else {
@ -310,7 +309,6 @@ define(['jquery', 'underscore', 'text!partials/audiovideo.html', 'text!partials/ @@ -310,7 +309,6 @@ define(['jquery', 'underscore', 'text!partials/audiovideo.html', 'text!partials/
var tooHigh = (newContainerHeight-innerHeight) / Math.ceil(videos.length / videosPerRow);
singleVideoHeight -= tooHigh;
singleVideoWidth = singleVideoHeight * aspectRatio;
newContainerHeight = innerHeight;
}
/*
console.log("space", space);
@ -321,7 +319,6 @@ define(['jquery', 'underscore', 'text!partials/audiovideo.html', 'text!partials/ @@ -321,7 +319,6 @@ define(['jquery', 'underscore', 'text!partials/audiovideo.html', 'text!partials/
console.log("singleVideoHeight", singleVideoHeight);
*/
container.style.width = newContainerWidth + "px";
container.style.height = newContainerHeight + "px";
container.style.left = ((innerWidth - newContainerWidth) / 2) + 'px';
extraCSS = {
"#remoteVideos": {

Loading…
Cancel
Save