GUAC-919: Fix filtering of project properties in web pages.

This commit is contained in:
Michael Jumper
2014-11-03 16:24:26 -08:00
parent 161c4d2359
commit b655b58267
4 changed files with 31 additions and 25 deletions

View File

@@ -31,17 +31,17 @@ angular.module('index').config(['$routeProvider', '$locationProvider',
$routeProvider.
when('/', {
title: 'index.title',
title: 'application.title',
templateUrl: 'app/home/templates/home.html',
controller: 'homeController'
}).
when('/manage/', {
title: 'index.title',
title: 'application.title',
templateUrl: 'app/manage/templates/manage.html',
controller: 'manageController'
}).
when('/login/', {
title: 'index.title',
title: 'application.title',
templateUrl: 'app/login/templates/login.html',
controller: 'loginController'
}).