fixup! fix(tracker): check node scrolls only on start

This commit is contained in:
Alex Kaminskii 2022-06-29 11:13:53 +02:00
parent cea704e1ee
commit 8ad5d869f7

View file

@ -57,8 +57,8 @@ export default class Nodes {
}
return id;
}
callNodeCallbacks(node: Node, start: boolean): void {
this.nodeCallbacks.forEach((cb) => cb(node, start));
callNodeCallbacks(node: Node, isStart: boolean): void {
this.nodeCallbacks.forEach((cb) => cb(node, isStart));
}
getID(node: Node): number | undefined {
return (node as any)[this.node_id];