Files: a1db279053aec5366d349c13b1b768184961ce89 / modules / message-id.js
237 bytesRaw
1 | |
2 | var h = require('hyperscript') |
3 | |
4 | exports.message_meta = function (msg) { |
5 | return h('div',h('input', {value: msg.key, readonly:'', onclick: function (ev) { |
6 | ev.target.select() |
7 | ev.stopPropagation() |
8 | ev.preventDefault() |
9 | }})) |
10 | } |
11 |
Built with git-ssb-web