Merge pull request #3027 from ngosang/fix_webui_all

Web UI: Fix resumeAll and pauseAll. Closes #3016
This commit is contained in:
sledgehammer999 2015-05-17 18:44:11 +03:00
commit 2c1d76c87f

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) {