git ssb

16+

Dominic / patchbay



Commit 0eaf17392ff36c30135c6f4ef3eb9c8ee0c28faf

Add more word spacing

Charles Lehner committed on 7/10/2016, 6:43:38 AM
Parent: 57d83e725fa4910953df2482019b53aba1f94a43

Files changed

modules/about.jschanged
modules/post.jschanged
modules/about.jsView
@@ -15,9 +15,9 @@
1515 var id = msg.value.content.about
1616 return h('p',
1717 about.about === msg.value.author
1818 ? h('span', 'self-identifies')
19- : h('span', 'identifies', idLink(id)),
19+ : h('span', 'identifies ', idLink(id)),
2020 ' as ',
2121 h('a', {href:"#/"+about.about},
2222 about.name || null,
2323 about.image
modules/post.jsView
@@ -11,9 +11,9 @@
1111 exports.message_content = function (data, sbot) {
1212 if(!data.value.content || !data.value.content.text) return
1313
1414 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))
1616
1717 var content = h('div')
1818 var d = h('div', re, content)
1919

Built with git-ssb-web