(Re)Implement live update of corpus and job lists.

This commit is contained in:
Patrick Jentsch
2019-08-29 15:12:08 +02:00
parent 1955d3c015
commit 7702de8770
5 changed files with 4975 additions and 10 deletions
+1 -3
View File
@@ -46,8 +46,7 @@ class CorpusList extends List {
}
/*
corporaUpdateHandler(delta) {
updateWithPatch(delta) {
var corpusElement, key, listItem;
for (key in delta) {
@@ -74,5 +73,4 @@ class CorpusList extends List {
}
}
}
*/
}
+1 -3
View File
@@ -49,8 +49,7 @@ class JobList extends List {
}
/*
jobsUpdateHandler(delta) {
updateWithPatch(delta) {
var jobElement, jobStatusElement, key, listItem;
for (key in delta) {
@@ -83,7 +82,6 @@ class JobList extends List {
}
}
}
*/
}
JobList.SERVICE_COLORS = {"nlp": "blue",
File diff suppressed because it is too large Load Diff
+36
View File
File diff suppressed because one or more lines are too long