git ssb

16+

Dominic / patchbay



Tree: 1a326ad6e229f48d252a5d8e4e8dd65a803f4d58

Files: 1a326ad6e229f48d252a5d8e4e8dd65a803f4d58 / post-patchcore / message / html / action / quote.js

405 bytesRaw
1var h = require('mutant/h')
2var nest = require('depnest')
3
4exports.needs = nest({
5 'app.sync.goTo': 'first'
6})
7
8exports.gives = nest('message.html.action')
9
10exports.create = (api) => {
11 return nest('message.html.action', function quote (msg) {
12 return h('a', {
13 href: '#',
14 'ev-click': () => api.app.sync.goTo({ action: 'quote', key: msg.key, value: msg.value })
15 }, 'Quote')
16 })
17}
18

Built with git-ssb-web