aboutsummaryrefslogtreecommitdiff
path: root/lib/serve.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/serve.js')
-rw-r--r--lib/serve.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/serve.js b/lib/serve.js
index d63be2f..05659e4 100644
--- a/lib/serve.js
+++ b/lib/serve.js
@@ -1075,11 +1075,12 @@ Serve.prototype.wrapNew = function (opts) {
composer,
h('table.ssb-msgs',
thread,
- h('tr', h('td.paginate', {colspan: 3},
- h('a', {href: '?' + qs.stringify({
- gt: opts.gt,
- catchup: 1,
- })}, '↓ catchup')
+ h('tr', h('td.paginate.msg-left', {colspan: 3},
+ h('form', {method: 'get', action: ''},
+ h('input', {type: 'hidden', name: 'gt', value: opts.gt}),
+ h('input', {type: 'hidden', name: 'catchup', value: '1'}),
+ h('input', {type: 'submit', value: 'catchup'})
+ )
))
)
])