Add onclick property on the rules on dashboard

This commit is contained in:
Gaël Métais
2014-12-21 14:19:56 +01:00
parent 0862116a40
commit c1257afc4c
6 changed files with 94 additions and 49 deletions
+8
View File
@@ -29,6 +29,14 @@ yltApp.config(['$routeProvider', '$locationProvider',
templateUrl: 'front/views/dashboard.html',
controller: 'DashboardCtrl'
}).
when('/result/:runId/timeline', {
templateUrl: 'front/views/timeline.html',
controller: 'TimelineCtrl'
}).
when('/result/:runId/rule/:policy', {
templateUrl: 'front/views/rule.html',
controller: 'RuleCtrl'
}).
otherwise({
redirectTo: '/'
});