diff options
author | Jack Chan <chenjiankun1@huawei.com> | 2018-03-16 09:00:21 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-03-16 09:00:21 +0000 |
commit | 320ddb571c774a2cf17863225bb415bf6b2c65aa (patch) | |
tree | e69c25ea066668c95ce4de4c4b2a3c2a1274cda3 /gui/app/scripts/controllers/content.controller.js | |
parent | 32e60fb2c37573265111994d33c1a43ea64bf6f8 (diff) | |
parent | 4b8f53542a6871c863fbaba16dd5e0e35cf05ce5 (diff) |
Merge "Add SUT page in GUI"
Diffstat (limited to 'gui/app/scripts/controllers/content.controller.js')
-rw-r--r-- | gui/app/scripts/controllers/content.controller.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gui/app/scripts/controllers/content.controller.js b/gui/app/scripts/controllers/content.controller.js index 0288fa540..90a3f1433 100644 --- a/gui/app/scripts/controllers/content.controller.js +++ b/gui/app/scripts/controllers/content.controller.js @@ -49,6 +49,7 @@ angular.module('yardStickGui2App') $scope.gotoOpenrcPage = gotoOpenrcPage; $scope.gotoPodPage = gotoPodPage; $scope.gotoContainerPage = gotoContainerPage; + $scope.gotoSUTPage = gotoSUTPage; $scope.gotoTestcase = gotoTestcase; $scope.gotoEnviron = gotoEnviron; $scope.gotoSuite = gotoSuite; @@ -95,6 +96,12 @@ angular.module('yardStickGui2App') $state.go('app.container', { uuid: $scope.uuid }); } + function gotoSUTPage() { + $scope.path = $location.path(); + $scope.uuid = $scope.path.split('/').pop(); + $state.go('app.sut', { uuid: $scope.uuid }); + } + function gotoTestcase() { $state.go('app.testcase'); } |