1234567891011121314151617181920212223 |
- /**
- * The prefix of the {@code localStorage} key into which {@link storeConfig}
- * stores and from which {@link restoreConfig} restores.
- *
- * @protected
- * @type string
- */
- export const _CONFIG_STORE_PREFIX = 'config.js';
-
- /**
- * The list of all possible UI buttons.
- *
- * @protected
- * @type Array<string>
- */
- export const TOOLBAR_BUTTONS = [
- 'microphone', 'camera', 'closedcaptions', 'desktop', 'embedmeeting', 'fullscreen',
- 'fodeviceselection', 'hangup', 'profile', 'chat', 'recording',
- 'livestreaming', 'etherpad', 'sharedvideo', 'settings', 'raisehand',
- 'videoquality', 'filmstrip', 'invite', 'feedback', 'stats', 'shortcuts',
- 'tileview', 'select-background', 'download', 'help', 'mute-everyone', 'mute-video-everyone',
- 'security', 'toggle-camera'
- ];
|