Last change
on this file since 17246 was
12584,
checked in by dglaser, 9 years ago
|
#2388: Changed all files to connect to localhost / sqlexpress
HeuristicLab.Services.Hive-3.3:
- Added Converter.cs and NewHiveService.cs, both will be integrated into existing HiveService.cs and Convert.cs when all methods are successfully implemented
HeuristicLab.Services.Hive.Web.Hive-3.3:
HeuristicLab.Services.WebApp.Statistics-3.3:
- Added functionality to download TaskData as .hl file
|
File size:
453 bytes
|
Line | |
---|
1 | (function () {
|
---|
2 | var module = appStatisticsPlugin.getAngularModule();
|
---|
3 | module.controller('app.statistics.jobTaskDetailsDialogCtrl',
|
---|
4 | ['$scope', '$modalInstance', 'taskNo', 'task', function ($scope, $modalInstance, taskNo, task) {
|
---|
5 | $scope.taskNo = taskNo;
|
---|
6 | $scope.task = task;
|
---|
7 | $scope.close = function () {
|
---|
8 | $modalInstance.dismiss('cancel');
|
---|
9 | };
|
---|
10 | }]
|
---|
11 | );
|
---|
12 | })(); |
---|
Note: See
TracBrowser
for help on using the repository browser.