fix: poll not showing up when infinitescroll is used

This commit is contained in:
Barış Soner Uşaklı 2024-05-17 10:46:33 -04:00
parent 5dc857a3bd
commit 3887e429d4

View file

@ -16,6 +16,14 @@ window.Poll = {};
}
});

$(window).on('action:posts.loaded', function (ev, data) {
data.posts.forEach((post) => {
if (post.hasOwnProperty('pollId')) {
getPoll(post.pollId);
}
});
});

$(window).on('action:posts.edited', function (ev, data) {
if (data.post.hasOwnProperty('pollId')) {
getPoll(data.post.pollId);