123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /**
- * 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 = [
- 'camera',
- 'chat',
- 'closedcaptions',
- 'desktop',
- 'download',
- 'embedmeeting',
- 'etherpad',
- 'feedback',
- 'filmstrip',
- 'fullscreen',
- 'hangup',
- 'help',
- 'invite',
- 'livestreaming',
- 'microphone',
- 'mute-everyone',
- 'mute-video-everyone',
- 'participants-pane',
- 'profile',
- 'raisehand',
- 'recording',
- 'security',
- 'select-background',
- 'settings',
- 'shareaudio',
- 'sharedvideo',
- 'shortcuts',
- 'stats',
- 'tileview',
- 'toggle-camera',
- 'videoquality'
- ];
|