15 lines
406 B
CoffeeScript
15 lines
406 B
CoffeeScript
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!'
|
|
]
|