diff --git a/html/includes/common/alerts.inc.php b/html/includes/common/alerts.inc.php index 702da465f8..634ff5a2a4 100644 --- a/html/includes/common/alerts.inc.php +++ b/html/includes/common/alerts.inc.php @@ -253,12 +253,6 @@ var alerts_grid = $("#alerts_' . $unique_id . '").bootgrid({ $(this).find(".incident-toggle").fadeIn(200); }).on("mouseleave", function() { $(this).find(".incident-toggle").fadeOut(200); - }).on("click", "td(.incident-toggle-td)", function() { - var target = $(this).parent().find(".incident-toggle").data("target"); - if( $(this).parent().find(".incident-toggle").hasClass(\'fa-plus\') ) { - $(this).parent().find(".incident-toggle").toggleClass(\'fa-plus fa-minus\'); - $(target).collapse(\'toggle\'); - } }); }); alerts_grid.find(".command-ack-alert").on("click", function(e) { diff --git a/html/pages/device/alerts.inc.php b/html/pages/device/alerts.inc.php index f1b7ba26a4..7a503d549b 100644 --- a/html/pages/device/alerts.inc.php +++ b/html/pages/device/alerts.inc.php @@ -11,5 +11,6 @@ * option) any later version. Please see LICENSE.txt at the top level of * the source code distribution for details. */ +require_once 'includes/modal/alert_notes.inc.php'; require_once 'includes/common/alerts.inc.php'; echo implode('', $common_output);