client/modules/about.jsView |
---|
14 | 14 … | |
15 | 15 … | exports.create = function (api) { |
16 | 16 … | var exports = {} |
17 | 17 … | |
18 | | - exports.message_content = function (msg) { |
| 18 … | + exports.message_content = |
19 | 19 … | if(msg.value.content.type == 'about') { |
20 | 20 … | var about = msg.value.content |
21 | 21 … | if (msg.value.content.description) { |
22 | 22 … | return h('span', api.markdown('**Description:** ' + about.description)) |
23 | 23 … | } |
24 | 24 … | } |
25 | | - } |
| 25 … | + }*/ |
| 26 … | + |
| 27 … | + |
26 | 28 … | exports.message_content_mini = function (msg) { |
27 | 29 … | if(msg.value.content.type == 'about') { |
28 | 30 … | var about = msg.value.content |
29 | | - |
| 31 … | + var id = msg.value.content.about |
30 | 32 … | if (msg.value.content.name) { |
31 | | - return h('span', ' names themselves ', about.name) |
| 33 … | + return h('span', ' identifies as ', about.name) |
32 | 34 … | } |
33 | 35 … | if (msg.value.content.image) { |
34 | 36 … | return h('span', ' identifies as ', h('img.avatar--thumbnail', {src: api.blob_url(about.image)})) |
35 | 37 … | } |
36 | 38 … | if (msg.value.content.loc) { |
37 | 39 … | return h('span', h('strong', 'Location: '), about.loc) |
38 | 40 … | } |
| 41 … | + if (msg.value.content.description) { |
| 42 … | + return h('span', api.markdown('**Description:** ' + about.description)) |
| 43 … | + } else { return } |
39 | 44 … | } |
40 | 45 … | } |
41 | 46 … | return exports |
42 | 47 … | } |