Files: 86a733778b0428dc270a65273d76c6bb187dad06 / modules / follow.js
377 bytesRaw
1 | var h = require('hyperscript') |
2 | var u = require('../util') |
3 | exports.avatar = [] |
4 | |
5 | //render a message when someone follows someone, |
6 | //so you see new users |
7 | exports.message_content = function (msg, sbot) { |
8 | |
9 | if(msg.value.content.type == 'contact') { |
10 | return h('div.contact', |
11 | 'follows', |
12 | u.firstPlug(exports.avatar, msg.value.content.contact, sbot) |
13 | ) |
14 | } |
15 | } |
16 | |
17 | |
18 | |
19 | |
20 | |
21 | |
22 | |
23 | |
24 |
Built with git-ssb-web