Timeline bugfixes

This commit is contained in:
daisuke
2021-03-27 12:04:26 -06:00
parent ed37590c5f
commit 5b558b6df6
5 changed files with 34 additions and 10 deletions

View File

@ -38,6 +38,10 @@ $query = http_build_query(array_filter(array(
return false;
}
$.get("action.php?a=true&notes=" + thread, function(data) {
thread = getUrlParameter('thread');
if (typeof thread == 'undefined') {
return false;
}
$( ".post_notes" ).html(data);
});
}, 15000);