git ssb

0+

ev / minbase



Tree: e79b60cf3dad85b6ef8589856a512ebd338c257f

Files: e79b60cf3dad85b6ef8589856a512ebd338c257f / config.js

512 bytesRaw
1var http = require('http')
2
3module.exports = function () {
4 var host = window.location.origin
5
6 http.get(host + '/get-config', function (res) {
7 res.on('data', function (data, remote) {
8 config = data
9 localStorage[host] = config
10 })
11 })
12
13 var config = JSON.parse(localStorage[host])
14
15 config.blobsUrl = host + '/blobs/get/'
16 config.emojiUrl = host + '/img/emoji/'
17
18 if (config.ws.remote)
19 config.remote = config.ws.remote
20 else
21 config.remote = config.address
22
23 return config
24}
25
26
27

Built with git-ssb-web