Beta-Seite hinzugefügt

This commit is contained in:
silas
2018-09-18 19:37:44 +02:00
parent b0287f5db0
commit e61097cfc4
6 changed files with 28 additions and 5624 deletions

View File

@@ -24,7 +24,7 @@ export class FourWordsLevel extends Level {
leafsWords[3] = Level._createLeafsForWord(this.words[3], this.templateContainer.copyLeafTemplate());
let rootSegment = new RowSegment(this.templateContainer.copyRowTemplate());
for (let i = 0, n = this.wordLength / 4; i < n; i++) {
for (let i = 0; i < this.wordLength / 4; i++) {
let parents = [];
parents[0] = new ParentSegment(this.templateContainer.copyParentTemplate());

View File

@@ -28,7 +28,7 @@ export class SixWordsRowLevel extends Level {
leafsWords[5] = Level._createLeafsForWord(this.words[5], this.templateContainer.copyLeafTemplate());
let rootSegment = new RowSegment(this.templateContainer.copyRowTemplate());
for (let i = 0, n = this.wordLength / 4; i < n; i++) {
for (let i = 0; i < this.wordLength / 4; i++) {
let parents = [];
parents[0] = new ParentSegment(this.templateContainer.copyParentTemplate());