aboutsummaryrefslogtreecommitdiff
path: root/lib/render.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/render.js')
-rw-r--r--lib/render.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/render.js b/lib/render.js
index bc4ce5b..1cd92e6 100644
--- a/lib/render.js
+++ b/lib/render.js
@@ -76,6 +76,7 @@ Render.prototype.emoji = function (emoji) {
h('img.ssb-emoji', {
src: this.opts.emoji_base + emoji + '.png',
alt: name,
+ height: 17,
title: name,
}) : name
}
@@ -146,7 +147,8 @@ Render.prototype.toUrl = function (href) {
case '&':
if (!u.isRef(href)) return false
return this.opts.blob_base + href
- case '#': return this.opts.base + encodeURIComponent(href)
+ case '#': return this.opts.base + 'channel/' +
+ encodeURIComponent(href.substr(1))
case '/': return this.opts.base + href.substr(1)
case '?': return this.opts.base + 'search?q=' + encodeURIComponent(href)
}
@@ -165,6 +167,7 @@ Render.prototype.avatarImage = function (link, cb) {
if (!link) return cb(), ''
if (typeof link === 'string') link = {link: link}
var img = h('img.ssb-avatar-image', {
+ width: 72,
alt: ' '
})
if (link.image) gotAbout(null, link)