Adds jsdoc to previous commit
This commit is contained in:
parent
8a678286f7
commit
9a5d2012d3
|
@ -20,7 +20,11 @@ var interfaceConfig = {
|
||||||
'recording', 'security', 'invite', 'chat', 'prezi', 'etherpad',
|
'recording', 'security', 'invite', 'chat', 'prezi', 'etherpad',
|
||||||
'fullscreen', 'sip', 'dialpad', 'settings', 'hangup', 'filmstrip',
|
'fullscreen', 'sip', 'dialpad', 'settings', 'hangup', 'filmstrip',
|
||||||
'contacts'],
|
'contacts'],
|
||||||
VIDEO_LAYOUT_FIT: 'both', // height, width, both
|
// Determines how the video would fit the screen. 'both' would fit the whole
|
||||||
|
// screen, 'height' would fit the original video height to the height of the
|
||||||
|
// screen, 'width' would fit the original video width to the width of the
|
||||||
|
// screen respecting ratio.
|
||||||
|
VIDEO_LAYOUT_FIT: 'both',
|
||||||
/**
|
/**
|
||||||
* Whether to only show the filmstrip (and hide the toolbar).
|
* Whether to only show the filmstrip (and hide the toolbar).
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -180,9 +180,14 @@ function getDesktopVideoPosition(videoWidth,
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an array of the video dimensions, so that it covers the screen.
|
* Returns an array of the video dimensions. It respects the
|
||||||
* It leaves no empty areas, but some parts of the video might not be visible.
|
* VIDEO_LAYOUT_FIT config, to fit the video to the screen, by hiding some parts
|
||||||
|
* of it, or to fit it to the height or width.
|
||||||
*
|
*
|
||||||
|
* @param videoWidth the original video width
|
||||||
|
* @param videoHeight the original video height
|
||||||
|
* @param videoSpaceWidth the width of the video space
|
||||||
|
* @param videoSpaceHeight the height of the video space
|
||||||
* @return an array with 2 elements, the video width and the video height
|
* @return an array with 2 elements, the video width and the video height
|
||||||
*/
|
*/
|
||||||
function getCameraVideoSize(videoWidth,
|
function getCameraVideoSize(videoWidth,
|
||||||
|
|
Loading…
Reference in New Issue