aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/webapp/apps/frontPageApp/frontPageApp.js
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2013-01-22 09:57:54 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2013-01-22 09:57:54 +0100
commit813904f035b612a9c61caba97d54f8a803f5a69c (patch)
tree35a1503cc1af61faa1b78ae0c5e7a5a452f93731 /src/main/resources/webapp/apps/frontPageApp/frontPageApp.js
parent6e403ab935f36720b3b954afdf3bbefcbf50bb5c (diff)
downloadesper-testing-813904f035b612a9c61caba97d54f8a803f5a69c.tar.gz
esper-testing-813904f035b612a9c61caba97d54f8a803f5a69c.tar.bz2
esper-testing-813904f035b612a9c61caba97d54f8a803f5a69c.tar.xz
esper-testing-813904f035b612a9c61caba97d54f8a803f5a69c.zip
o Showing links to the Jenkins build on the build page.
Diffstat (limited to 'src/main/resources/webapp/apps/frontPageApp/frontPageApp.js')
-rwxr-xr-xsrc/main/resources/webapp/apps/frontPageApp/frontPageApp.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/resources/webapp/apps/frontPageApp/frontPageApp.js b/src/main/resources/webapp/apps/frontPageApp/frontPageApp.js
index 1004c6f..4633892 100755
--- a/src/main/resources/webapp/apps/frontPageApp/frontPageApp.js
+++ b/src/main/resources/webapp/apps/frontPageApp/frontPageApp.js
@@ -1,6 +1,6 @@
'use strict';
-var frontPageApp = angular.module('frontPageApp', ['ngGrid', 'person', 'badge', 'build', 'jenkinsUser', 'pagingTableService', 'core.directives']).config(function ($routeProvider) {
+var frontPageApp = angular.module('frontPageApp', ['ngGrid', 'person', 'badge', 'build', 'jenkinsUser', 'jenkinsBuild', 'pagingTableService', 'core.directives']).config(function ($routeProvider) {
$routeProvider.
when('/', {controller: FrontPageCtrl, templateUrl: '/apps/frontPageApp/frontPage.html?noCache=' + noCache}).
when('/badge/', {controller: BadgeListCtrl, templateUrl: '/apps/frontPageApp/badgeList.html?noCache=' + noCache}).
@@ -136,10 +136,10 @@ function BuildListCtrl($scope, Build, PagingTableService) {
{ count: 100, watcher: watcher });
}
-function BuildCtrl($scope, $routeParams, Build, PagingTableService) {
+function BuildCtrl($scope, $routeParams, Build, JenkinsBuild) {
var buildUuid = $routeParams.buildUuid;
- Build.get({uuid: buildUuid}, function (build) {
- $scope.build = build;
+ $scope.build = Build.get({uuid: buildUuid}, function (build) {
+ $scope.jenkinsBuild = JenkinsBuild.get({uuid: build.build.buildUuid});
});
}