Fix routing paths
Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/7f72bc57 Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/7f72bc57 Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/7f72bc57 Branch: refs/heads/master Commit: 7f72bc5772da4ecf6cbbf337bcd0c5627b4d5d15 Parents: 1f3cfae Author: Michael Joyce <[email protected]> Authored: Wed Jul 16 13:07:52 2014 -0700 Committer: Michael Joyce <[email protected]> Committed: Wed Jul 16 13:07:52 2014 -0700 ---------------------------------------------------------------------- ocw-ui/frontend-new/app/scripts/app.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/7f72bc57/ocw-ui/frontend-new/app/scripts/app.js ---------------------------------------------------------------------- diff --git a/ocw-ui/frontend-new/app/scripts/app.js b/ocw-ui/frontend-new/app/scripts/app.js index cbdc4fb..ca830dd 100644 --- a/ocw-ui/frontend-new/app/scripts/app.js +++ b/ocw-ui/frontend-new/app/scripts/app.js @@ -33,25 +33,25 @@ angular $stateProvider .state('main',{ url: '/evaluate', - templateUrl: 'partials/main.html', + templateUrl: 'views/main.html', }) .state('results', { url: '/results', abstract: true, - templateUrl: 'partials/results.html', + templateUrl: 'views/results.html', controller: 'ResultCtrl' }) .state('results.list', { // parent: 'results', url: '', - templateUrl: 'partials/results.list.html', + templateUrl: 'views/results.list.html', }) .state('results.detail', { // parent: 'results', url: '/{resultId}', views: { '': { - templateUrl: 'partials/results.detail.html', + templateUrl: 'views/results.detail.html', controller: 'ResultDetailCtrl' }, 'menu': {
