fixup! fix(tracker): check node scrolls only on start
This commit is contained in:
parent
cea704e1ee
commit
8ad5d869f7
1 changed files with 2 additions and 2 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue