1
0
Fork 0
mirror of https://github.com/qurator-spk/neat.git synced 2025-06-11 20:59:54 +02:00

implement issue #32

This commit is contained in:
Kai Labusch 2019-12-11 07:59:49 +01:00
parent 57b6b7d6d3
commit 06501c9340

View file

@ -164,19 +164,6 @@ function setupInterface(data, file, urls) {
$("#preview-link").attr("href", img_url);
}
function gotoLocation(evt) {
if (urls == null) return;
// let nRow = parseInt($(evt.target).text());
let tableInfo = $(evt.target).data('tableInfo');
let nRow = tableInfo.nRow;
updatePreview(nRow)
}
function colorCode() {
$("#table td:contains('B-PER')").addClass('ner_per');
$("#table td:contains('I-PER')").addClass('ner_per');
@ -196,6 +183,18 @@ function setupInterface(data, file, urls) {
let editingTd;
function gotoLocation(evt) {
if (urls == null) return;
if (editingTd != null) return;
let tableInfo = $(evt.target).data('tableInfo');
let nRow = tableInfo.nRow;
updatePreview(nRow)
}
function makeTdEditable(td) {
editingTd = {