Removed unnecessary console.log statements.

This commit is contained in:
Daan Vanden Bosch 2019-10-31 19:11:58 +01:00
parent ee76fb8aea
commit af5c27a565

View File

@ -114,7 +114,6 @@ export class EventsView extends ResizableWidget {
break;
}
console.log(`${event.id} -> ${child.id}`, low_pos, high_pos, `depth: ${depth}`);
for (let i = low_pos; i < high_pos; i++) {
used_depths[i][depth] = true;
@ -133,7 +132,6 @@ export class EventsView extends ResizableWidget {
}
}
console.log(used_depths);
element.style.marginLeft = `${SPACING * max_depth}px`;
});