UX: Don't show "X days later" unless the posts are sequential.
This fixes the display of later posts when in summary mode.
This commit is contained in:
parent
fb03c13bc6
commit
0013477453
|
@ -6,6 +6,8 @@ function calcDayDiff(p1, p2) {
|
||||||
const date = p1.get('created_at');
|
const date = p1.get('created_at');
|
||||||
if (date) {
|
if (date) {
|
||||||
if (p2) {
|
if (p2) {
|
||||||
|
const numDiff = p1.get('post_number') - p2.get('post_number');
|
||||||
|
if (numDiff === 1) {
|
||||||
const lastDate = p2.get('created_at');
|
const lastDate = p2.get('created_at');
|
||||||
if (lastDate) {
|
if (lastDate) {
|
||||||
const delta = new Date(date).getTime() - new Date(lastDate).getTime();
|
const delta = new Date(date).getTime() - new Date(lastDate).getTime();
|
||||||
|
@ -15,6 +17,7 @@ function calcDayDiff(p1, p2) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const PostStream = RestModel.extend({
|
const PostStream = RestModel.extend({
|
||||||
|
|
Loading…
Reference in New Issue