add entity class 'B-CONF'

pull/39/head
cneud 5 years ago
parent 7ef681af84
commit 109db92357

@ -87,6 +87,8 @@ function setupInterface(data, file) {
$("#table td:contains('I-ORG')").addClass('ner_org');
$("#table td:contains('B-PUB')").addClass('ner_pub');
$("#table td:contains('I-PUB')").addClass('ner_pub');
$("#table td:contains('B-CONF')").addClass('ner_conf');
$("#table td:contains('I-CONF')").addClass('ner_conf');
$("#table td:contains('B-TODO')").addClass('ner_todo');
$("#table td:contains('I-TODO')").addClass('ner_todo');
}
@ -262,6 +264,7 @@ function setupInterface(data, file) {
<div class="ner_loc type_select">B-LOC</div>
<div class="ner_org type_select">B-ORG</div>
<div class="ner_pub type_select">B-PUB</div>
<div class="ner_conf type_select">B-CONF</div>
<div class="ner_todo type_select">B-TODO</div>
</div>
</section>
@ -271,6 +274,7 @@ function setupInterface(data, file) {
<div class="ner_loc type_select">I-LOC</div>
<div class="ner_org type_select">I-ORG</div>
<div class="ner_pub type_select">I-PUB</div>
<div class="ner_conf type_select">I-CONF</div>
<div class="ner_todo type_select">I-TODO</div>
</div>
</section>

@ -27,6 +27,7 @@
.ner_loc{background-color:goldenrod}
.ner_org{background-color:plum}
.ner_pub{background-color:lightgreen}
.ner_conf{background-color:olive}
.ner_todo{background-color:turquoise}
.fit-image{

Loading…
Cancel
Save