Compare commits

..

No commits in common. "e053e01e3abe082285277f3bb6cb458e0e737076" and "51208f43b37c7d967df9c7dcd212af613f1a3147" have entirely different histories.

2 changed files with 1 additions and 3 deletions

View file

@ -30,7 +30,7 @@ function time_ago(time) {
} }
const years = Math.round(weeks / 52); const years = Math.round(weeks / 52);
return `${years}y` return `{years}y`
} }
function timeAgoTick(selector, format) { function timeAgoTick(selector, format) {

View file

@ -99,7 +99,6 @@ FEED = feed.Feed(
inserted_at=(REF_TIME * 1000) + index, inserted_at=(REF_TIME * 1000) + index,
title=f"Entry {index}", title=f"Entry {index}",
link=f"http://example.com/test/a{index}", link=f"http://example.com/test/a{index}",
posted_at=(REF_TIME * 1000) + index,
) )
for index in range(100, 0, -1) for index in range(100, 0, -1)
], ],
@ -122,7 +121,6 @@ OTHER_FEED = feed.Feed(
inserted_at=(REF_TIME * 1000) + index, inserted_at=(REF_TIME * 1000) + index,
title=f"Entry {index}", title=f"Entry {index}",
link=f"http://example.com/other/a{index}", link=f"http://example.com/other/a{index}",
posted_at=(REF_TIME * 1000) + index,
) )
for index in range(100, 0, -1) for index in range(100, 0, -1)
], ],