fix: feed page now correctly loads-more

This commit is contained in:
Paul Frazee 2015-10-05 14:45:16 -05:00
parent 048042a8ba
commit 316e9a6c78
1 changed files with 5 additions and 1 deletions

View File

@ -12,6 +12,10 @@ module.exports = function (pid) {
// markup // markup
var feed = app.ssb.createFeedStream var feed = app.ssb.createFeedStream
var cursor = function (msg) {
if (msg)
return msg.value.timestamp
}
if (pid) { if (pid) {
feed = function (opts) { feed = function (opts) {
opts = opts || {} opts = opts || {}
@ -23,7 +27,7 @@ module.exports = function (pid) {
ui.setPage('feed', h('.layout-onecol', ui.setPage('feed', h('.layout-onecol',
h('.layout-main', h('.layout-main',
h('h3.text-center', 'Behind the Scenes ', h('small', 'Raw Data Feed')), h('h3.text-center', 'Behind the Scenes ', h('small', 'Raw Data Feed')),
com.messageFeed({ feed: feed, render: com.messageSummary.raw, infinite: true }) com.messageFeed({ feed: feed, cursor: cursor, render: com.messageSummary.raw, infinite: true })
) )
)) ))
} }