Skip to content

Commit

Permalink
fix(coffee): updated coffescript templates to point to partials
Browse files Browse the repository at this point in the history
  • Loading branch information
DaftMonk committed Nov 27, 2013
1 parent eb45ff8 commit f98e84e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/coffeescript-min/app.coffee
Expand Up @@ -4,7 +4,7 @@ angular.module('<%= scriptAppName %>', [<%= angularModules %>])
.config ['$routeProvider', '$locationProvider', ($routeProvider, $locationProvider) ->
$routeProvider
.when '/',
templateUrl: 'views/main'
templateUrl: 'partials/main'
controller: 'MainCtrl'
.otherwise
redirectTo: '/'
Expand Down
2 changes: 1 addition & 1 deletion templates/coffeescript/app.coffee
Expand Up @@ -4,7 +4,7 @@ angular.module('<%= scriptAppName %>', [<%= angularModules %>])
.config ($routeProvider, $locationProvider) ->
$routeProvider
.when '/',
templateUrl: 'views/main'
templateUrl: 'partials/main'
controller: 'MainCtrl'
.otherwise
redirectTo: '/'
Expand Down

0 comments on commit f98e84e

Please sign in to comment.