Add "unigore" buttons to ignored rules

This commit is contained in:
Rowan Manning
2014-01-10 15:46:30 +00:00
parent dfac541294
commit 02e22eb094
6 changed files with 59 additions and 3 deletions

View File

@@ -14,6 +14,8 @@ function presentTask (task) {
task.hrefRun = '/' + task.id + '/run';
task.hrefJson = '/' + task.id + '.json';
task.hrefEdit = '/' + task.id + '/edit';
task.hrefIgnore = '/' + task.id + '/ignore';
task.hrefUnignore = '/' + task.id + '/unignore';
// Enhance the ignored rules
task.ignore = presentIgnoreRules(task.ignore);