re-add TODO support

pull/39/head
Kai Labusch 5 years ago
parent c5dbaea77c
commit 0144771f90

@ -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) {

@ -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

Loading…
Cancel
Save