aboutsummaryrefslogtreecommitdiff
path: root/views/alerts.haml
diff options
context:
space:
mode:
Diffstat (limited to 'views/alerts.haml')
-rw-r--r--views/alerts.haml23
1 files changed, 2 insertions, 21 deletions
diff --git a/views/alerts.haml b/views/alerts.haml
index aedbc72..54bfff7 100644
--- a/views/alerts.haml
+++ b/views/alerts.haml
@@ -7,25 +7,6 @@
.notice#alerts_table
%p No alerts to display.
:javascript
- $(document).ready( function() {
- $.PeriodicalUpdater({
- url: '/ajax/alerts_table/#{@alert_type}/#{@group_by}',
- minTimeout: 10000,
- maxTimeout: 30000,
- }, function(alerts_table, success, xhr, handle){
- $('#alerts_table').replaceWith(alerts_table);
- });
- $.PeriodicalUpdater({
- url: '/ajax/alert_counts',
- minTimeout: 10000,
- maxTimeout: 30000,
- }, function(alert_counts, success, xhr, handle){
- var counts = jQuery.parseJSON( alert_counts );
- $('#count_raised').html(counts[0]+counts[1]+counts[2]);
- $('#count_ackd').html(counts[3]);
- $('#count_cleared').html(counts[4]);
- return false;
- });
-
- });
+ // Do the magic updates..
+ setInterval("updateAlertsTable('#{@alert_type}','#{@group_by}');", 30000)