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