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:
parent
57b6b7d6d3
commit
06501c9340
1 changed files with 12 additions and 13 deletions
25
neath.js
25
neath.js
|
@ -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 = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue