1
0
Fork 0
mirror of https://github.com/qurator-spk/neat.git synced 2025-06-09 19:59:55 +02:00

re-add TODO support

This commit is contained in:
Kai Labusch 2019-09-20 15:45:57 +02:00
parent c5dbaea77c
commit 0144771f90
3 changed files with 3 additions and 0 deletions

View file

@ -219,6 +219,8 @@ function updateTable() {
$("#table td:contains('I-ORG')").addClass('ner_org'); $("#table td:contains('I-ORG')").addClass('ner_org');
$("#table td:contains('B-OTH')").addClass('ner_oth'); $("#table td:contains('B-OTH')").addClass('ner_oth');
$("#table td:contains('I-OTH')").addClass('ner_oth'); $("#table td:contains('I-OTH')").addClass('ner_oth');
$("#table td:contains('B-TODO')").addClass('ner_todo');
$("#table td:contains('I-TODO')").addClass('ner_todo');
} }
function saveFile(evt) { function saveFile(evt) {

View file

@ -17,6 +17,7 @@
.ner_loc{background-color:goldenrod} .ner_loc{background-color:goldenrod}
.ner_org{background-color:plum} .ner_org{background-color:plum}
.ner_oth{background-color:lightgreen} .ner_oth{background-color:lightgreen}
.ner_todo{background-color:turquoise}
</style> </style>
</head> </head>
<body> <body>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Before After
Before After