Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
show loading indicator for filtered mode
  • Loading branch information
abr-egn committed Jan 4, 2025
commit 00a5b163a87217efadc1aaff2d3aeb0e2a613b19
4 changes: 4 additions & 0 deletions server/static/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ function loadActivity() {
var previousPage = currentPage;
currentPage = page;

if (nohelp == 'true') {
$('#activity-table tbody').empty().append($('<tr>').append($('<td>').attr('colspan', 6).text('Loading...')))
}

$.get('activity.json?next=' + page + '&nohelp=' + nohelp, function(data) {
var $tbody = $('#activity-table tbody');
$tbody.empty();
Expand Down