浏览代码

fix(livestreaming): window.open params

The target parameter from window.open was missing which was causing
reload in electron.
master
Hristo Terezov 5 年前
父节点
当前提交
9b5f135dae
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      react/features/recording/components/LiveStream/web/StreamKeyForm.js

+ 1
- 1
react/features/recording/components/LiveStream/web/StreamKeyForm.js 查看文件

102
      * @returns {void}
102
      * @returns {void}
103
      */
103
      */
104
     _onOpenHelp() {
104
     _onOpenHelp() {
105
-        window.open(this.helpURL, 'noopener');
105
+        window.open(this.helpURL, '_blank', 'noopener');
106
     }
106
     }
107
 }
107
 }
108
 
108
 

正在加载...
取消
保存