Files
lunchrun.me/assets/linker/js/controllers.coffee
2014-03-08 21:38:57 -06:00

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!'
]