mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
Cleanup special list classes.
This commit is contained in:
parent
52bd8ec94e
commit
98de581132
@ -6,7 +6,15 @@ class CorpusList extends List {
|
||||
|
||||
|
||||
init() {
|
||||
this.createCorpusElements(corpora);
|
||||
var corpus;
|
||||
|
||||
for (corpus of corpora) {
|
||||
this.list.appendChild(this.createCorpusElement(corpus));
|
||||
}
|
||||
|
||||
this.reIndex();
|
||||
this.update();
|
||||
List.updatePagination(this);
|
||||
}
|
||||
|
||||
|
||||
@ -38,18 +46,6 @@ class CorpusList extends List {
|
||||
}
|
||||
|
||||
|
||||
createCorpusElements(corpora) {
|
||||
var corpus;
|
||||
|
||||
for (corpus of corpora) {
|
||||
this.list.appendChild(this.createCorpusElement(corpus));
|
||||
}
|
||||
|
||||
this.reIndex();
|
||||
this.update();
|
||||
List.updatePagination(this);
|
||||
}
|
||||
|
||||
/*
|
||||
corporaUpdateHandler(delta) {
|
||||
var corpusElement, key, listItem;
|
||||
|
@ -6,7 +6,15 @@ class JobList extends List {
|
||||
|
||||
|
||||
init() {
|
||||
this.createJobElements(jobs);
|
||||
var job;
|
||||
|
||||
for (job of jobs) {
|
||||
this.list.appendChild(this.createJobElement(job));
|
||||
}
|
||||
|
||||
this.reIndex();
|
||||
this.update();
|
||||
List.updatePagination(this);
|
||||
}
|
||||
|
||||
|
||||
@ -41,18 +49,6 @@ class JobList extends List {
|
||||
}
|
||||
|
||||
|
||||
createJobElements(jobs) {
|
||||
var job;
|
||||
|
||||
for (job of jobs) {
|
||||
this.list.appendChild(this.createJobElement(job));
|
||||
}
|
||||
|
||||
this.reIndex();
|
||||
this.update();
|
||||
List.updatePagination(this);
|
||||
}
|
||||
|
||||
/*
|
||||
jobsUpdateHandler(delta) {
|
||||
var jobElement, jobStatusElement, key, listItem;
|
||||
|
Loading…
Reference in New Issue
Block a user