cryptalk/public/js/lib/hosts.js

21 lines
449 B
JavaScript
Raw Normal View History

define({
// Used to autoconnect to specific host.
// Points to a specific index in the 'hosts' array.
// Use -1 to not autoconnect.
autoconnect: 0,
// A collection of hosts to choose from
hosts: [
{
2014-09-23 12:41:59 -04:00
name: 'default',
2016-01-03 19:36:21 -05:00
host: '',
2017-02-07 15:19:23 -05:00
path: '/js/lib/settings.js'
2014-09-23 12:41:59 -04:00
}/*,
{
2017-02-22 17:09:50 -05:00
name: 'Official host - cryptalk.56k.guru',
host: 'https://cryptalk.56k.guru',
path: 'https://cryptalk.56k.guru/js/cryptalk_modules/settings.js'
2014-09-23 12:41:59 -04:00
}*/
]
2014-09-22 16:11:13 -04:00
});