Browse Source

fix(livestreaming): window.open params

The target parameter from window.open was missing which was causing
reload in electron.
master
Hristo Terezov 5 years ago
parent
commit
9b5f135dae

+ 1
- 1
react/features/recording/components/LiveStream/web/StreamKeyForm.js View File

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
 

Loading…
Cancel
Save