Move templates to linker folder

This commit is contained in:
Ben Ramey
2014-03-22 20:47:50 -05:00
parent 8935e57817
commit c37c6976ab
6 changed files with 3 additions and 3 deletions

View File

@@ -8,13 +8,13 @@ lunchApp.config ['$routeProvider',
($routeProvider) ->
$routeProvider
.when '/',
templateUrl: 'templates/home.html',
templateUrl: 'linker/templates/home.html',
controller: 'HomeCtrl'
.when '/run/:id',
templateUrl: 'templates/run.html',
templateUrl: 'linker/templates/run.html',
controller: 'RunCtrl'
.when '/run/:id/order/:inviteeName',
templateUrl: 'templates/create-order.html',
templateUrl: 'linker/templates/create-order.html',
controller: 'CreateOrderCtrl'
]