add entity tag B-ART for artworks

pull/39/head
cneud 5 years ago
parent ff451f9ebd
commit 98bb7e407a

@ -92,6 +92,8 @@ function setupInterface(data, file) {
$("#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-ART')").addClass('ner_art');
$("#table td:contains('I-ART')").addClass('ner_art');
$("#table td:contains('B-TODO')").addClass('ner_todo');
$("#table td:contains('I-TODO')").addClass('ner_todo');
}
@ -268,6 +270,7 @@ function setupInterface(data, file) {
<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_art type_select">B-ART</div>
<div class="ner_todo type_select">B-TODO</div>
</div>
</section>
@ -278,6 +281,7 @@ function setupInterface(data, file) {
<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_art type_select">I-ART</div>
<div class="ner_todo type_select">I-TODO</div>
</div>
</section>

@ -28,6 +28,7 @@
.ner_org{background-color:plum}
.ner_pub{background-color:lightgreen}
.ner_conf{background-color:olive}
.ner_art{background-color:lavender}
.ner_todo{background-color:turquoise}
.fit-image{

Loading…
Cancel
Save