1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-02-02 21:07:20 +01:00

auto-reload.js: remove variables which are never read

This commit is contained in:
Zankaria 2025-01-04 21:43:16 +01:00
parent 209c334667
commit b6d16c7cd2

View File

@ -47,10 +47,7 @@ $(document).ready(function(){
var poll_interval_delay = poll_interval_mindelay; var poll_interval_delay = poll_interval_mindelay;
var poll_current_time = poll_interval_delay; var poll_current_time = poll_interval_delay;
var end_of_page = false;
var new_posts = 0; var new_posts = 0;
var first_new_post = null;
var title = document.title; var title = document.title;
@ -112,7 +109,6 @@ $(document).ready(function(){
new_posts = 0; new_posts = 0;
} }
update_title(); update_title();
first_new_post = null;
}; };
// automatically updates the thread after a specified delay // automatically updates the thread after a specified delay
@ -154,9 +150,6 @@ $(document).ready(function(){
$(data).find('div.post.reply').each(function() { $(data).find('div.post.reply').each(function() {
var id = $(this).attr('id'); var id = $(this).attr('id');
if($('#' + id).length == 0) { if($('#' + id).length == 0) {
if (!new_posts) {
first_new_post = this;
}
new_posts++; new_posts++;
loaded_posts++; loaded_posts++;
elementsToAppend.push($(this)); elementsToAppend.push($(this));
@ -230,13 +223,11 @@ $(document).ready(function(){
// If the newest post is not visible. // If the newest post is not visible.
if($(this).scrollTop() + $(this).height() < if($(this).scrollTop() + $(this).height() <
$('div.post:last').position().top + $('div.post:last').height()) { $('div.post:last').position().top + $('div.post:last').height()) {
end_of_page = false;
return; return;
} else { } else {
if($("#auto_update_status").is(':checked') && timeDiff(poll_interval_mindelay)) { if($("#auto_update_status").is(':checked') && timeDiff(poll_interval_mindelay)) {
poll(manualUpdate = true); poll(manualUpdate = true);
} }
end_of_page = true;
} }
}); });