integrate js cqi into corpus_analysis package

This commit is contained in:
Patrick Jentsch
2023-11-10 10:27:39 +01:00
parent 61be3345be
commit 4822f6ec02
25 changed files with 413 additions and 471 deletions

View File

@ -3,7 +3,7 @@ nopaque.forms = {};
nopaque.forms.AutoInit = () => {
for (let propertyName in nopaque.forms) {
let property = nopaque.forms[propertyName];
// Call autoInit of all properties that are subclasses of nopaque.forms.BaseForm.
// Initialize properties that are subclasses of nopaque.forms.BaseForm.
// This does not include nopaque.forms.BaseForm itself.
if (property.prototype instanceof nopaque.forms.BaseForm) {
// Check if the static htmlClass property is defined.