2018-10-08 18:10:56 +02:00
|
|
|
// Note: You probably do not want to change any values in here because this
|
|
|
|
// file might need to be updated with new default values for new
|
|
|
|
// configuration options. Use the [config.local.js] file instead!
|
|
|
|
|
|
|
|
window.mumbleWebConfig = {
|
2018-10-08 19:21:48 +02:00
|
|
|
// Which fields to show on the Connect to Server dialog
|
|
|
|
'connectDialog': {
|
|
|
|
'address': true,
|
|
|
|
'port': true,
|
|
|
|
'token': true,
|
|
|
|
'username': true,
|
|
|
|
'password': true
|
|
|
|
},
|
2018-10-08 18:10:56 +02:00
|
|
|
// Default values (can be changed by passing a query parameter of the same name)
|
|
|
|
'defaults': {
|
|
|
|
// Connect Dialog
|
2018-10-08 18:48:36 +02:00
|
|
|
'address': window.location.hostname,
|
2018-10-08 18:10:56 +02:00
|
|
|
'port': '443',
|
|
|
|
'token': '',
|
|
|
|
'username': '',
|
|
|
|
'password': '',
|
|
|
|
'joinDialog': false, // replace whole dialog with single "Join Conference" button
|
|
|
|
'matrix': false, // enable Matrix Widget support (mostly auto-detected; implies 'joinDialog')
|
|
|
|
'avatarurl': '', // download and set the user's Mumble avatar to the image at this URL
|
|
|
|
// General
|
|
|
|
'theme': 'MetroMumbleLight'
|
|
|
|
}
|
|
|
|
}
|