Fix jsdocs
This commit is contained in:
parent
8882d9c3b6
commit
ec2e6525ac
|
@ -1263,10 +1263,8 @@ export default {
|
||||||
|
|
||||||
room.on(
|
room.on(
|
||||||
ConferenceEvents.AUTH_STATUS_CHANGED,
|
ConferenceEvents.AUTH_STATUS_CHANGED,
|
||||||
function (authEnabled, authLogin) {
|
(authEnabled, authLogin) =>
|
||||||
APP.UI.updateAuthInfo(authEnabled, authLogin);
|
APP.UI.updateAuthInfo(authEnabled, authLogin));
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
room.on(ConferenceEvents.PARTCIPANT_FEATURES_CHANGED,
|
room.on(ConferenceEvents.PARTCIPANT_FEATURES_CHANGED,
|
||||||
user => APP.UI.onUserFeaturesChanged(user));
|
user => APP.UI.onUserFeaturesChanged(user));
|
||||||
|
|
|
@ -295,7 +295,7 @@ UI.getSharedVideoManager = function () {
|
||||||
* Starts the UI module and initializes all related components.
|
* Starts the UI module and initializes all related components.
|
||||||
*
|
*
|
||||||
* @returns {boolean} true if the UI is ready and the conference should be
|
* @returns {boolean} true if the UI is ready and the conference should be
|
||||||
* esablished, false - otherwise (for example in the case of welcome page)
|
* established, false - otherwise (for example in the case of welcome page)
|
||||||
*/
|
*/
|
||||||
UI.start = function () {
|
UI.start = function () {
|
||||||
document.title = interfaceConfig.APP_NAME;
|
document.title = interfaceConfig.APP_NAME;
|
||||||
|
@ -367,7 +367,6 @@ UI.start = function () {
|
||||||
// this is the default toastr close button html, just adds tabIndex
|
// this is the default toastr close button html, just adds tabIndex
|
||||||
"closeHtml": '<button type="button" tabIndex="-1">×</button>'
|
"closeHtml": '<button type="button" tabIndex="-1">×</button>'
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const { callee } = APP.store.getState()['features/jwt'];
|
const { callee } = APP.store.getState()['features/jwt'];
|
||||||
|
@ -1385,8 +1384,8 @@ UI.hideRingOverlay
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Indicates if any the "top" overlays are currently visible. The check includes
|
* Indicates if any the "top" overlays are currently visible. The check includes
|
||||||
* the call overlay, the suspended overlay, the GUM permissions overlay, and the
|
* the call/ring overlay, the suspended overlay, the GUM permissions overlay,
|
||||||
* page-reload overlay.
|
* and the page-reload overlay.
|
||||||
*
|
*
|
||||||
* @returns {*|boolean} {true} if an overlay is visible; {false}, otherwise
|
* @returns {*|boolean} {true} if an overlay is visible; {false}, otherwise
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -89,7 +89,7 @@ function _conferenceFailed(state, action) {
|
||||||
/**
|
/**
|
||||||
* The indicator of how the conference/room is locked. If falsy, the
|
* The indicator of how the conference/room is locked. If falsy, the
|
||||||
* conference/room is unlocked; otherwise, it's either
|
* conference/room is unlocked; otherwise, it's either
|
||||||
* {@code LOCKED_LOCALLY| or {@code LOCKED_REMOTELY}.
|
* {@code LOCKED_LOCALLY} or {@code LOCKED_REMOTELY}.
|
||||||
*
|
*
|
||||||
* @type {string}
|
* @type {string}
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue