config.js 791 B

1234567891011121314151617181920
  1. // Note: You probably do not want to change any values in here because this
  2. // file might need to be updated with new default values for new
  3. // configuration options. Use the [config.local.js] file instead!
  4. window.mumbleWebConfig = {
  5. // Default values (can be changed by passing a query parameter of the same name)
  6. 'defaults': {
  7. // Connect Dialog
  8. 'address': '',
  9. 'port': '443',
  10. 'token': '',
  11. 'username': '',
  12. 'password': '',
  13. 'joinDialog': false, // replace whole dialog with single "Join Conference" button
  14. 'matrix': false, // enable Matrix Widget support (mostly auto-detected; implies 'joinDialog')
  15. 'avatarurl': '', // download and set the user's Mumble avatar to the image at this URL
  16. // General
  17. 'theme': 'MetroMumbleLight'
  18. }
  19. }