refresh global status after task status changed
This commit is contained in:
parent
45613d09db
commit
bf4d02a657
|
@ -68,6 +68,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
$rootScope.loadPromise = invoke(gids, function (result) {
|
$rootScope.loadPromise = invoke(gids, function (result) {
|
||||||
|
refreshGlobalStat(false);
|
||||||
$route.reload();
|
$route.reload();
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
@ -81,6 +82,7 @@
|
||||||
|
|
||||||
ariaNgCommonService.confirm('Confirm Remove', 'Are you sure you want to remove the selected task?', 'warning', function () {
|
ariaNgCommonService.confirm('Confirm Remove', 'Are you sure you want to remove the selected task?', 'warning', function () {
|
||||||
$rootScope.loadPromise = aria2TaskService.removeTasks(tasks, function (result) {
|
$rootScope.loadPromise = aria2TaskService.removeTasks(tasks, function (result) {
|
||||||
|
refreshGlobalStat(false);
|
||||||
if ($location.path() == '/stopped') {
|
if ($location.path() == '/stopped') {
|
||||||
$route.reload();
|
$route.reload();
|
||||||
} else {
|
} else {
|
||||||
|
@ -93,6 +95,7 @@
|
||||||
$scope.clearStoppedTasks = function () {
|
$scope.clearStoppedTasks = function () {
|
||||||
ariaNgCommonService.confirm('Confirm Clear', 'Are you sure you want to clear stopped tasks?', 'warning', function () {
|
ariaNgCommonService.confirm('Confirm Clear', 'Are you sure you want to clear stopped tasks?', 'warning', function () {
|
||||||
$rootScope.loadPromise = aria2TaskService.clearStoppedTasks(function (result) {
|
$rootScope.loadPromise = aria2TaskService.clearStoppedTasks(function (result) {
|
||||||
|
refreshGlobalStat(false);
|
||||||
if ($location.path() == '/stopped') {
|
if ($location.path() == '/stopped') {
|
||||||
$route.reload();
|
$route.reload();
|
||||||
} else {
|
} else {
|
||||||
|
|
Reference in a new issue