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

add entity type EVT (event)

This commit is contained in:
cneud 2019-11-14 17:08:10 +01:00
parent ff50f3cf41
commit 62ff9ff9ad
2 changed files with 5 additions and 5 deletions

View file

@ -29,7 +29,7 @@
.ner_org{background-color:plum} .ner_org{background-color:plum}
.ner_work{background-color:lightgreen} .ner_work{background-color:lightgreen}
.ner_conf{background-color:olive} .ner_conf{background-color:olive}
.ner_art{background-color:lavender} .ner_evt{background-color:lavender}
.ner_todo{background-color:turquoise} .ner_todo{background-color:turquoise}
.fit-image{ .fit-image{

View file

@ -184,8 +184,8 @@ function setupInterface(data, file, urls) {
$("#table td:contains('I-WORK')").addClass('ner_work'); $("#table td:contains('I-WORK')").addClass('ner_work');
$("#table td:contains('B-CONF')").addClass('ner_conf'); $("#table td:contains('B-CONF')").addClass('ner_conf');
$("#table td:contains('I-CONF')").addClass('ner_conf'); $("#table td:contains('I-CONF')").addClass('ner_conf');
$("#table td:contains('B-ART')").addClass('ner_art'); $("#table td:contains('B-EVT')").addClass('ner_evt');
$("#table td:contains('I-ART')").addClass('ner_art'); $("#table td:contains('I-EVT')").addClass('ner_evt');
$("#table td:contains('B-TODO')").addClass('ner_todo'); $("#table td:contains('B-TODO')").addClass('ner_todo');
$("#table td:contains('I-TODO')").addClass('ner_todo'); $("#table td:contains('I-TODO')").addClass('ner_todo');
} }
@ -383,7 +383,7 @@ function setupInterface(data, file, urls) {
<div class="ner_org type_select">B-ORG</div> <div class="ner_org type_select">B-ORG</div>
<div class="ner_pub type_select">B-WORK</div> <div class="ner_pub type_select">B-WORK</div>
<div class="ner_conf type_select">B-CONF</div> <div class="ner_conf type_select">B-CONF</div>
<div class="ner_art type_select">B-ART</div> <div class="ner_art type_select">B-EVT</div>
<div class="ner_todo type_select">B-TODO</div> <div class="ner_todo type_select">B-TODO</div>
</div> </div>
</section> </section>
@ -394,7 +394,7 @@ function setupInterface(data, file, urls) {
<div class="ner_org type_select">I-ORG</div> <div class="ner_org type_select">I-ORG</div>
<div class="ner_pub type_select">I-WORK</div> <div class="ner_pub type_select">I-WORK</div>
<div class="ner_conf type_select">I-CONF</div> <div class="ner_conf type_select">I-CONF</div>
<div class="ner_art type_select">I-ART</div> <div class="ner_art type_select">I-EVT</div>
<div class="ner_todo type_select">I-TODO</div> <div class="ner_todo type_select">I-TODO</div>
</div> </div>
</section> </section>