fix templates for dev and prod

This commit is contained in:
Ben Ramey
2014-03-22 21:08:35 -05:00
parent c37c6976ab
commit 16c9138941
3 changed files with 8 additions and 9 deletions

View File

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