Basic create form

This commit is contained in:
Ben Ramey
2014-03-08 21:38:57 -06:00
parent a0710d3c71
commit 93931cf4b2
9 changed files with 9148 additions and 2 deletions

View File

@@ -1,5 +1,14 @@
lunchControllers = angular.module 'lunchControllers', []
lunchControllers.controller 'HomeCtrl', ['$scope', ($scope) ->
]
lunchControllers.controller 'CreateRunCtrl', ['$scope', '$http', ($scope, $http) ->
$scope.msg = 'im home, yah'
$scope.create = (run) ->
]
lunchControllers.controller 'RunsCtrl', ['$scope', '$http', ($scope, $http) ->
$scope.helloMsg = 'hello there boys and girls!'
]