Files
lunchrun.me/assets/linker/js/app.coffee
2014-03-08 20:50:33 -06:00

15 lines
343 B
CoffeeScript

lunchApp = angular.module 'lunchApp', [
'ngRoute',
'lunchControllers'
]
lunchApp.config ['$routeProvider',
($routeProvider) ->
$routeProvider
.when '/runs',
templateUrl: 'templates/runs.html',
controller: 'RunsCtrl'
.otherwise
redirectTo: '/runs'
]