git ssb

16+

Dominic / patchbay



Tree: 7b91ebea2f9f89a207555eda47a8779b3e83f734

Files: 7b91ebea2f9f89a207555eda47a8779b3e83f734 / message / html / reply.js

499 bytesRaw
1var h = require('mutant/h')
2var nest = require('depnest')
3
4exports.gives = nest('message.html.reply')
5
6exports.needs = nest({
7 'app.sync.goTo': 'first'
8})
9
10exports.create = (api) => {
11 return nest('message.html.reply', function betterReply (msg) {
12 return h('i.MessageReply.fa.fa-comment',
13 {
14 title: 'reply',
15 'ev-click': (ev) => {
16 ev.preventDefault()
17 api.app.sync.goTo({ action: 'reply', key: msg.key, value: msg.value })
18 }
19 }
20 )
21 })
22}
23

Built with git-ssb-web