mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-01-14 17:07:53 +00:00
fix of refreshTwistdayReminder() to remove peer from listUpcoming when adding to listCurrent occurs
This commit is contained in:
parent
0a51e2f0da
commit
371fa926c9
@ -231,8 +231,8 @@ function refreshTwistdayReminder() {
|
|||||||
list.append(item);
|
list.append(item);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function removeLuckyFromList(list, post) {
|
function removeLuckyFromList(list, lucky) {
|
||||||
list.find('[data-screen-name='+post.userpost.n+']').closest('li').remove();
|
list.find('[data-screen-name='+lucky+']').closest('li').remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
var showUpcomingTimer = ($.Options.getTwistdayReminderShowUpcomingOpt() === 'enable') ? $.Options.getTwistdayReminderShowUpcomingTimerOpt() *3600 : 0;
|
var showUpcomingTimer = ($.Options.getTwistdayReminderShowUpcomingOpt() === 'enable') ? $.Options.getTwistdayReminderShowUpcomingTimerOpt() *3600 : 0;
|
||||||
@ -255,6 +255,7 @@ function refreshTwistdayReminder() {
|
|||||||
d.setUTCSeconds(posts[i].userpost.time);
|
d.setUTCSeconds(posts[i].userpost.time);
|
||||||
if (d.getUTCMonth() === todayMonth && d.getUTCDate() === todayDate) {
|
if (d.getUTCMonth() === todayMonth && d.getUTCDate() === todayDate) {
|
||||||
addLuckyToList(listCurrent, posts[i]);
|
addLuckyToList(listCurrent, posts[i]);
|
||||||
|
removeLuckyFromList(listUpcoming, posts[i].userpost.n);
|
||||||
} else if (showUpcomingTimer > 0) {
|
} else if (showUpcomingTimer > 0) {
|
||||||
thatSec = Date.UTC(todayYear,d.getUTCMonth(),d.getUTCDate(),d.getUTCHours(),d.getUTCMinutes(),d.getUTCSeconds()) /1000;
|
thatSec = Date.UTC(todayYear,d.getUTCMonth(),d.getUTCDate(),d.getUTCHours(),d.getUTCMinutes(),d.getUTCSeconds()) /1000;
|
||||||
if (thatSec > todaySec && thatSec -todaySec <= showUpcomingTimer) {
|
if (thatSec > todaySec && thatSec -todaySec <= showUpcomingTimer) {
|
||||||
@ -262,12 +263,12 @@ function refreshTwistdayReminder() {
|
|||||||
d.setUTCSeconds(thatSec);
|
d.setUTCSeconds(thatSec);
|
||||||
addLuckyToList(listUpcoming, posts[i], d.getTime() /1000);
|
addLuckyToList(listUpcoming, posts[i], d.getTime() /1000);
|
||||||
} else {
|
} else {
|
||||||
removeLuckyFromList(listCurrent, posts[i]);
|
removeLuckyFromList(listCurrent, posts[i].userpost.n);
|
||||||
removeLuckyFromList(listUpcoming, posts[i]);
|
removeLuckyFromList(listUpcoming, posts[i].userpost.n);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
removeLuckyFromList(listCurrent, posts[i]);
|
removeLuckyFromList(listCurrent, posts[i].userpost.n);
|
||||||
removeLuckyFromList(listUpcoming, posts[i]);
|
removeLuckyFromList(listUpcoming, posts[i].userpost.n);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user