mirror of
https://github.com/qurator-spk/neat.git
synced 2025-06-09 19:59:55 +02:00
add entity tag B-ART for artworks
This commit is contained in:
parent
ff451f9ebd
commit
98bb7e407a
2 changed files with 5 additions and 0 deletions
|
@ -92,6 +92,8 @@ function setupInterface(data, file) {
|
||||||
$("#table td:contains('I-PUB')").addClass('ner_pub');
|
$("#table td:contains('I-PUB')").addClass('ner_pub');
|
||||||
$("#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('I-ART')").addClass('ner_art');
|
||||||
$("#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');
|
||||||
}
|
}
|
||||||
|
@ -268,6 +270,7 @@ function setupInterface(data, file) {
|
||||||
<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-PUB</div>
|
<div class="ner_pub type_select">B-PUB</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_todo type_select">B-TODO</div>
|
<div class="ner_todo type_select">B-TODO</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
@ -278,6 +281,7 @@ function setupInterface(data, file) {
|
||||||
<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-PUB</div>
|
<div class="ner_pub type_select">I-PUB</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_todo type_select">I-TODO</div>
|
<div class="ner_todo type_select">I-TODO</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
.ner_org{background-color:plum}
|
.ner_org{background-color:plum}
|
||||||
.ner_pub{background-color:lightgreen}
|
.ner_pub{background-color:lightgreen}
|
||||||
.ner_conf{background-color:olive}
|
.ner_conf{background-color:olive}
|
||||||
|
.ner_art{background-color:lavender}
|
||||||
.ner_todo{background-color:turquoise}
|
.ner_todo{background-color:turquoise}
|
||||||
|
|
||||||
.fit-image{
|
.fit-image{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue