Working run save

This commit is contained in:
Ben Ramey
2014-03-12 21:49:16 -05:00
parent e18e186be0
commit 0fbee6ecc9
6 changed files with 45 additions and 33 deletions

View File

@@ -1,6 +1,7 @@
lunchApp = angular.module 'lunchApp', [
'ngRoute',
'lunchControllers'
'lunchControllers',
'lunchServices'
]
lunchApp.config ['$routeProvider',
@@ -9,7 +10,7 @@ lunchApp.config ['$routeProvider',
.when '/',
templateUrl: 'templates/home.html',
controller: 'HomeCtrl'
.when '/runs',
.when '/runs',
templateUrl: 'templates/runs.html',
controller: 'RunsCtrl'
]