Commit 0eaf17392ff36c30135c6f4ef3eb9c8ee0c28faf
Add more word spacing
Charles Lehner committed on 7/10/2016, 6:43:38 AMParent: 57d83e725fa4910953df2482019b53aba1f94a43
Files changed
modules/about.js | changed |
modules/post.js | changed |
modules/about.js | ||
---|---|---|
@@ -15,9 +15,9 @@ | ||
15 | 15 | var id = msg.value.content.about |
16 | 16 | return h('p', |
17 | 17 | about.about === msg.value.author |
18 | 18 | ? h('span', 'self-identifies') |
19 | - : h('span', 'identifies', idLink(id)), | |
19 | + : h('span', 'identifies ', idLink(id)), | |
20 | 20 | ' as ', |
21 | 21 | h('a', {href:"#/"+about.about}, |
22 | 22 | about.name || null, |
23 | 23 | about.image |
modules/post.js | ||
---|---|---|
@@ -11,9 +11,9 @@ | ||
11 | 11 | exports.message_content = function (data, sbot) { |
12 | 12 | if(!data.value.content || !data.value.content.text) return |
13 | 13 | |
14 | 14 | var root = data.value.content.root |
15 | - var re = !root ? null : h('span', 're:', message_link(root)) | |
15 | + var re = !root ? null : h('span', 're: ', message_link(root)) | |
16 | 16 | |
17 | 17 | var content = h('div') |
18 | 18 | var d = h('div', re, content) |
19 | 19 |
Built with git-ssb-web