Web UI: Fix resumeAll and pauseAll. Closes #3016

This commit is contained in:
ngosang 2015-05-15 21:54:15 +02:00
parent e788445fe2
commit a90ec4cce7

View File

@ -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();
});
});
}
}