Files
lunchrun.me/assets/linker/js/controllers/home-controller.coffee
2014-04-08 20:55:36 -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'
]