diff --git a/src/webui/www/public/scripts/mocha-init.js b/src/webui/www/public/scripts/mocha-init.js index fae874419..5232dc98e 100644 --- a/src/webui/www/public/scripts/mocha-init.js +++ b/src/webui/www/public/scripts/mocha-init.js @@ -305,10 +305,21 @@ initializeWindows = function() { } }).send(); }); + updateMainData(); } }; - ['pauseAll', 'resumeAll', 'pause', 'resume', 'recheck'].each(function(item) { + ['pauseAll', 'resumeAll'].each(function(item) { + addClickEvent(item, function(e) { + new Event(e).stop(); + new Request({ + url: 'command/' + item + }).send(); + updateMainData(); + }); + }); + + ['pause', 'resume', 'recheck'].each(function(item) { addClickEvent(item, function(e) { new Event(e).stop(); var h = myTable.selectedIds(); @@ -325,13 +336,6 @@ initializeWindows = function() { updateMainData(); } }); - - addClickEvent(item + 'All', function(e) { - new Event(e).stop(); - new Request({ - url: 'command/' + item + 'all' - }).send(); - }); }); ['decreasePrio', 'increasePrio', 'topPrio', 'bottomPrio'].each(function(item) { @@ -396,4 +400,4 @@ initializeWindows = function() { new Event(e).stop(); }); }); -} \ No newline at end of file +}