aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/webapp/apps/frontPageApp/frontPageApp.js
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2013-01-13 09:35:27 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2013-01-13 09:35:27 +0100
commit22cb83183828c7a4828c54e9b30597d276cfd73f (patch)
treeb12bf07c920951bc17cb74758f2e0dcb99f04f5d /src/main/resources/webapp/apps/frontPageApp/frontPageApp.js
parent7869a849164dd8431a1326385c33af5d397b9789 (diff)
downloadesper-testing-22cb83183828c7a4828c54e9b30597d276cfd73f.tar.gz
esper-testing-22cb83183828c7a4828c54e9b30597d276cfd73f.tar.bz2
esper-testing-22cb83183828c7a4828c54e9b30597d276cfd73f.tar.xz
esper-testing-22cb83183828c7a4828c54e9b30597d276cfd73f.zip
o Implemented "build" view.
o Created a better 'dogtag' directive, should be more reusable.
Diffstat (limited to 'src/main/resources/webapp/apps/frontPageApp/frontPageApp.js')
-rwxr-xr-xsrc/main/resources/webapp/apps/frontPageApp/frontPageApp.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/webapp/apps/frontPageApp/frontPageApp.js b/src/main/resources/webapp/apps/frontPageApp/frontPageApp.js
index de8a7b6..9e507b4 100755
--- a/src/main/resources/webapp/apps/frontPageApp/frontPageApp.js
+++ b/src/main/resources/webapp/apps/frontPageApp/frontPageApp.js
@@ -118,7 +118,7 @@ function BuildListCtrl($scope, Build, PagingTableService) {
$scope.builds = PagingTableService.create($scope, PagingTableService.defaultCallback(Build, {fields: "detailed"}));
}
-function BuildCtrl($scope, Build, PagingTableService) {
+function BuildCtrl($scope, $routeParams, Build, PagingTableService) {
var buildUuid = $routeParams.buildUuid;
Build.get({uuid: buildUuid}, function (build) {