diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-08-01 15:35:05 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-08-01 15:35:05 +0100 |
commit | b718175601c02b8a251931622e7b79f469645111 (patch) | |
tree | 672e361498f33e0e3287cca05939c754630a1e81 /views/alerts.haml | |
parent | 5f57bc117ff110d21fe6c130816c208c35f0b987 (diff) |
Updated interface to auto-update nicely.
Diffstat (limited to 'views/alerts.haml')
-rw-r--r-- | views/alerts.haml | 23 |
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) |