Revert "reduce refresh to 5sec"

This reverts commit 8ea9ec7dd9.
This commit is contained in:
Oliver Gorwits
2013-05-30 05:57:20 +01:00
parent dc62382112
commit 3d688c7d83

View File

@@ -10,13 +10,18 @@
// but which cannot use jQuery delegation via .on() // but which cannot use jQuery delegation via .on()
function inner_view_processing(tab) { function inner_view_processing(tab) {
// reload this table every 5 seconds // reload this table every 10 seconds
if (tab == 'jobqueue') { if (tab == 'jobqueue') {
$('#nd_device-name').text('5'); $('#nd_device-name').text('10');
nd_timers.push(setTimeout(function() { $('#nd_device-name').text('4') }, 1000 )); nd_timers.push(setTimeout(function() { $('#nd_device-name').text('9') }, 1000 ));
nd_timers.push(setTimeout(function() { $('#nd_device-name').text('3') }, 2000 )); nd_timers.push(setTimeout(function() { $('#nd_device-name').text('8') }, 2000 ));
nd_timers.push(setTimeout(function() { $('#nd_device-name').text('2') }, 3000 )); nd_timers.push(setTimeout(function() { $('#nd_device-name').text('7') }, 3000 ));
nd_timers.push(setTimeout(function() { $('#nd_device-name').text('1') }, 4000 )); nd_timers.push(setTimeout(function() { $('#nd_device-name').text('6') }, 4000 ));
nd_timers.push(setTimeout(function() { $('#nd_device-name').text('5') }, 5000 ));
nd_timers.push(setTimeout(function() { $('#nd_device-name').text('4') }, 6000 ));
nd_timers.push(setTimeout(function() { $('#nd_device-name').text('3') }, 7000 ));
nd_timers.push(setTimeout(function() { $('#nd_device-name').text('2') }, 8000 ));
nd_timers.push(setTimeout(function() { $('#nd_device-name').text('1') }, 9000 ));
nd_timers.push(setTimeout(function() { nd_timers.push(setTimeout(function() {
// clear any running timers // clear any running timers
for (var i = 0; i < nd_timers.length; i++) { for (var i = 0; i < nd_timers.length; i++) {
@@ -24,7 +29,7 @@
} }
// reload the tab content // reload the tab content
$('#' + tab + '_form').trigger('submit'); $('#' + tab + '_form').trigger('submit');
}, 5000)); }, 10000));
} }
// activate typeahead on the topo boxes // activate typeahead on the topo boxes