Files: bdd674e048f8917357c9360017872a4d20836af0 / output / config.js
417 bytesRaw
1 | const config = { |
2 | physics: { |
3 | springLength: 80, |
4 | springCoeff: 0.0001, |
5 | gravity: -1.4, |
6 | theta: 0.4, |
7 | dragCoeff: 0.04 |
8 | }, |
9 | link: (link) => { |
10 | // if (link.data.hidden) return |
11 | // makes linkUI element not exist ? => display.getLink doesn't work |
12 | |
13 | return { |
14 | fromColor: 0x000066, |
15 | toColor: 0x000066 |
16 | } |
17 | }, |
18 | container: document.body.querySelector('main') |
19 | } |
20 | |
21 | module.exports = config |
22 |
Built with git-ssb-web