浏览代码

doc(LargeVideoManager): invalid default

The default for 'show' argument of 'showRemoteConnectionMessage' is
undefined (unspecified).
j8
paweldomas 8 年前
父节点
当前提交
a2a2a583de
共有 1 个文件被更改,包括 5 次插入5 次删除
  1. 5
    5
      modules/UI/videolayout/LargeVideoManager.js

+ 5
- 5
modules/UI/videolayout/LargeVideoManager.js 查看文件

@@ -426,11 +426,11 @@ export default class LargeVideoManager {
426 426
      * Shows hides the "avatar" message which is to be displayed either in
427 427
      * the middle of the screen or below the avatar image.
428 428
      *
429
-     * @param {null|boolean} [show=null] <tt>true</tt> to show the avatar
430
-     * message or <tt>false</tt> to hide it. If not provided then the connection
431
-     * status of the user currently on the large video will be obtained form
432
-     * "APP.conference" and the message will be displayed if the user's
433
-     * connection is either interrupted or inactive.
429
+     * @param {boolean|undefined} [show=undefined] <tt>true</tt> to show
430
+     * the avatar message or <tt>false</tt> to hide it. If not provided then
431
+     * the connection status of the user currently on the large video will be
432
+     * obtained form "APP.conference" and the message will be displayed if
433
+     * the user's connection is either interrupted or inactive.
434 434
      */
435 435
     showRemoteConnectionMessage (show) {
436 436
         if (typeof show !== 'boolean') {

正在加载...
取消
保存