aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEv Bogue <ev@evbogue.com>2019-05-01 21:14:00 -0500
committerEv Bogue <ev@evbogue.com>2019-05-01 21:14:00 -0500
commitb11e664970b0456d5e48f884f0b06975dd23fd8b (patch)
treea306f27890b8d81805cc4a1845590c1ae3da1ca7
parent7a42846ec9c645ebbe9aa6739f5e80ac939c99e4 (diff)
add repo url
-rw-r--r--app.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/app.js b/app.js
index 14a8d51..8758e18 100644
--- a/app.js
+++ b/app.js
@@ -14,8 +14,7 @@ function composer (keys, reply) {
if (textarea.value) {
var content = {
type: 'post',
- text: textarea.value,
- timestamp: Date.now()
+ text: textarea.value
}
if (reply) {
content.reply = reply.key
@@ -67,7 +66,8 @@ keys().then(key => {
h('div', {classList: 'internal'}, [
h('li', [h('a', {href: '#'}, ['Home'])]),
h('li', [h('a', {href: '#' + key.publicKey}, [getName(key.publicKey)])]),
- h('li', [h('a', {href: '#key'}, ['Key'])])
+ h('li', [h('a', {href: '#key'}, ['Key'])]),
+ h('li', {classList: 'right'}, [h('a', {href: 'http://github.com/bogbook/bog/'}, ['Git Repo'])])
])
])
document.body.appendChild(navbar)