fixing double quotes

This commit is contained in:
kevgliss
2015-10-05 09:19:14 -07:00
parent 162482dbc4
commit 8362a92898
3 changed files with 5 additions and 5 deletions

View File

@ -6,12 +6,12 @@ angular.module('lemur')
$stateProvider
.state('certificates', {
url: "/certificates",
url: '/certificates',
templateUrl: '/angular/certificates/view/view.tpl.html',
controller: 'CertificatesViewController'
})
.state('certificate', {
url: "/certificates/:name",
url: '/certificates/:name',
templateUrl: '/angular/certificates/view/view.tpl.html',
controller: 'CertificatesViewController'
});