fix(HelpButton): Improvements.
This commit is contained in:
parent
72bb897269
commit
ff2626723a
15
config.js
15
config.js
|
@ -419,15 +419,14 @@ var config = {
|
||||||
// the menu has option to flip the locally seen video for local presentations
|
// the menu has option to flip the locally seen video for local presentations
|
||||||
// disableLocalVideoFlip: false
|
// disableLocalVideoFlip: false
|
||||||
|
|
||||||
// If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for
|
// Deployment specific URLs.
|
||||||
// user documentation.
|
|
||||||
// userDocumentationURL: 'https://docs.example.com/video-meetings.html'
|
|
||||||
|
|
||||||
// URLs meant to be opened in different windows.
|
|
||||||
// deploymentUrls: {
|
// deploymentUrls: {
|
||||||
// // If specified a 'Download our apps' button will be displayed in the overflow menu with a link
|
// // If specified a 'Help' button will be displayed in the overflow menu with a link to the specified URL for
|
||||||
// // to the specified URL for an app download page.
|
// // user documentation.
|
||||||
// downloadAppsUrl: 'https://docs.example.com/our-apps.html'
|
// userDocumentationURL: 'https://docs.example.com/video-meetings.html',
|
||||||
|
// // If specified a 'Download our apps' button will be displayed in the overflow menu with a link
|
||||||
|
// // to the specified URL for an app download page.
|
||||||
|
// downloadAppsUrl: 'https://docs.example.com/our-apps.html'
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// List of undocumented settings used in jitsi-meet
|
// List of undocumented settings used in jitsi-meet
|
||||||
|
|
|
@ -51,7 +51,7 @@ var interfaceConfig = {
|
||||||
'fodeviceselection', 'hangup', 'profile', 'info', 'chat', 'recording',
|
'fodeviceselection', 'hangup', 'profile', 'info', 'chat', 'recording',
|
||||||
'livestreaming', 'etherpad', 'sharedvideo', 'settings', 'raisehand',
|
'livestreaming', 'etherpad', 'sharedvideo', 'settings', 'raisehand',
|
||||||
'videoquality', 'filmstrip', 'invite', 'feedback', 'stats', 'shortcuts',
|
'videoquality', 'filmstrip', 'invite', 'feedback', 'stats', 'shortcuts',
|
||||||
'tileview', 'videobackgroundblur', 'download'
|
'tileview', 'videobackgroundblur', 'download', 'help'
|
||||||
],
|
],
|
||||||
|
|
||||||
SETTINGS_SECTIONS: [ 'devices', 'language', 'moderator', 'profile', 'calendar' ],
|
SETTINGS_SECTIONS: [ 'devices', 'language', 'moderator', 'profile', 'calendar' ],
|
||||||
|
|
|
@ -44,7 +44,7 @@ class HelpButton extends AbstractButton<Props, *> {
|
||||||
* @returns {Object}
|
* @returns {Object}
|
||||||
*/
|
*/
|
||||||
function _mapStateToProps(state: Object) {
|
function _mapStateToProps(state: Object) {
|
||||||
const { userDocumentationURL } = state['features/base/config'];
|
const { userDocumentationURL } = state['features/base/config'].deploymentUrls || {};
|
||||||
const visible = typeof userDocumentationURL === 'string';
|
const visible = typeof userDocumentationURL === 'string';
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in New Issue