aboutsummaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
authorJoop Kiefte <ikojba@gmail.com>2019-10-15 23:45:40 +0200
committerJoop Kiefte <ikojba@gmail.com>2019-10-23 02:23:48 +0200
commit0595c19dea42fd38d0c54310fa6adce49e34ce30 (patch)
tree29155d99164d144793dc8172194991a00935431d /app.js
parent58169f4f06879f4e708fcd3ccb0ebfc8eaab9eae (diff)
Make it work on ipfs (removing root references)
Diffstat (limited to 'app.js')
-rw-r--r--app.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/app.js b/app.js
index ed118c8..b05c781 100644
--- a/app.js
+++ b/app.js
@@ -13,9 +13,9 @@ function route (keys) {
if (!name) {
var identify = h('div', {id: 'identify', classList: 'message'})
scroller.appendChild(identify)
- identify.appendChild(h('span', {innerHTML: marked("Hey [" + keys.publicKey.substring(0, 10) + "...](/#"+ keys.publicKey +")! Welcome to Bogbook. If you have any questions be sure to reach out to [@ev](/#@Q++V5BbvWIg8B+TqtC9ZKFhetruuw+nOgxEqfjlOZI0=).")}))
+ identify.appendChild(h('span', {innerHTML: marked("Hey [" + keys.publicKey.substring(0, 10) + "...](#"+ keys.publicKey +")! Welcome to Bogbook. If you have any questions be sure to reach out to [@ev](#@Q++V5BbvWIg8B+TqtC9ZKFhetruuw+nOgxEqfjlOZI0=).")}))
- identify.appendChild(h('span', {innerHTML: marked("Your current public key doesn't have a name yet. Either import your existing id on the [key](/#key) page, or identify yourself using the box below. Identifying is optional, but you'll see this welcome message as long as you don't give yourself a name.")}))
+ identify.appendChild(h('span', {innerHTML: marked("Your current public key doesn't have a name yet. Either import your existing id on the [key](#key) page, or identify yourself using the box below. Identifying is optional, but you'll see this welcome message as long as you don't give yourself a name.")}))
var input = h('input', {placeholder: 'Give yourself a name'})
@@ -41,7 +41,7 @@ function route (keys) {
}, ['Identify'])
]))
- identify.appendChild(h('span', {innerHTML: marked("Next, make sure to save your public/private keypair on the [key](/#key) page, so that you can continue to use the same identity. No one but you can access your private key, so only you can restore your ability to publish to this identity. If you lose your key, you lose your ability to publish to this identity forever.")}))
+ identify.appendChild(h('span', {innerHTML: marked("Next, make sure to save your public/private keypair on the [key](#key) page, so that you can continue to use the same identity. No one but you can access your private key, so only you can restore your ability to publish to this identity. If you lose your key, you lose your ability to publish to this identity forever.")}))
identify.appendChild(h('span', {innerHTML: marked("Finally, be sure to check out the code on [SourceHut](http://git.sr.ht/~ev/bogbook)")}))