Oprava po přejmenování tagů (#9)

Fix camel case

Fix sample video and XML parser

Remove extra chromosomes

Reviewed-on: https://git.microlab.space/pixx/TVC/pulls/9
Co-Authored-By: Emil Miler <emil.miler@pedf.cuni.cz>
Co-Committed-By: Emil Miler <emil.miler@pedf.cuni.cz>
This commit is contained in:
Emil Miler
2021-01-30 21:22:31 +01:00
committed by David Zálešák
parent 426fd2bf96
commit a0406b44da
6 changed files with 15 additions and 17 deletions

View File

@@ -1,8 +1,8 @@
class Comment {
constructor(start, end, tittle, text) {
constructor(start, end, title, text) {
this.start = start;
this.end = end;
this.tittle = tittle;
this.title = title;
this.text = [];
for (let i = 0; i < text.length; i++) {