aboutsummaryrefslogtreecommitdiff
path: root/lib/render-msg.js
diff options
context:
space:
mode:
authorAngelo DiNardi <angelo@dinardi.name>2017-05-29 02:11:35 -0700
committerAngelo DiNardi <angelo@dinardi.name>2017-06-21 00:16:26 -0700
commitf5bfde1b7a67b691490a9c979ab7f06312b2a0b3 (patch)
tree5c19c43a94c9f7a5804a0e4700f6ed30c9ba7e70 /lib/render-msg.js
parente75aae0684addc9819c5b7a6895299c79d999adb (diff)
downloadpatchfoo-f5bfde1b7a67b691490a9c979ab7f06312b2a0b3.tar.gz
patchfoo-f5bfde1b7a67b691490a9c979ab7f06312b2a0b3.zip
make root and branch link indicators more clear (in my head at least).
Diffstat (limited to 'lib/render-msg.js')
-rw-r--r--lib/render-msg.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/render-msg.js b/lib/render-msg.js
index a968702..15e278c 100644
--- a/lib/render-msg.js
+++ b/lib/render-msg.js
@@ -277,9 +277,9 @@ RenderMsg.prototype.post = function (cb) {
done(function (err, rootLink, branchLinks) {
if (err) return self.wrap(u.renderError(err), cb)
self.wrap(h('div.ssb-post',
- rootLink ? h('div', h('small', '>> ', rootLink)) : '',
+ rootLink ? h('div', h('small', '→ ', rootLink)) : '',
branchLinks.map(function (a, i) {
- return h('div', h('small', '> ', a))
+ return h('div', h('small', '  ↳ ', a))
}),
h('div.ssb-post-text', {innerHTML: self.markdown()})
), cb)