Added network exclusion support to alerts (#6233)

This commit is contained in:
Matteo Biscosi 2022-01-25 17:23:28 +01:00
parent 30c4a6fd65
commit e728518e36
13 changed files with 198 additions and 130 deletions

View file

@ -148,19 +148,6 @@
NtopUtils.copyToClipboard($(e.target).attr('title'), "{{i18n('db_search.query_copied')}}", "{{i18n('unable_to_copy_to_clickboard')}}", $(`#{{ datatable.name }}-query`));
})
/* Show an overlay to hide loading */
function toggleOverlays(time = 500) {
$(`.overlay`).toggle(time);
}
function showOverlays(time = 500) {
$(`.overlay`).fadeIn(time);
}
function hideOverlays(time = 500) {
$(`.overlay`).fadeOut(time);
}
function updateDownloadButton() {
if (!$(`#dt-btn-download`)) return;