Changeset 12775 for branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Maintenance/3.3/WebApp
- Timestamp:
- 07/17/15 16:41:24 (10 years ago)
- Location:
- branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Maintenance/3.3/WebApp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Maintenance/3.3/WebApp/factclientinfo/factclientinfoCtrl.js
r12761 r12775 53 53 }; 54 54 55 $scope.updateInterval = $interval($scope.getFactClientInfo, $scope.interval);56 var cancelInterval = $scope.$on('$locationChangeSuccess', function () {57 $interval.cancel($scope.updateInterval);58 cancelInterval();59 });60 55 $scope.getFactClientInfo(); // init page 61 56 }] -
branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Maintenance/3.3/WebApp/facttask/facttaskCtrl.js
r12761 r12775 64 64 }; 65 65 66 $scope.updateInterval = $interval($scope.getJobs, $scope.interval);67 var cancelInterval = $scope.$on('$locationChangeSuccess', function () {68 $interval.cancel($scope.updateInterval);69 cancelInterval();70 });71 66 $scope.getJobs(); // init page 72 67 }]
Note: See TracChangeset
for help on using the changeset viewer.