Files
lunchrun.me/assets/linker/js/controllers/home-controller.coffee
2014-04-07 21:40:35 -05:00

8 lines
237 B
CoffeeScript

lunchControllers = angular.module 'lunchControllers'
lunchControllers.controller 'HomeCtrl', ['$scope', '$location',
HomeController = ($scope,$location) ->
$scope.createRun = () ->
$location.path '/run/create'
]