diff options
author | bobzel <zzzman@gmail.com> | 2022-09-29 20:44:33 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-09-29 20:44:33 -0400 |
commit | 2de2e154912d95a15e5f890c9d1a3a7a11610107 (patch) | |
tree | ddc5fad406050b3629f588a3a09e88d3214f13bb /src/client/views/nodes/ScriptingBox.tsx | |
parent | 4580a4193edb451f628eee8be2d3c31d06b1a3a7 (diff) |
a bunch of changes to trails: link to trail to initiate trail when following link. cleanly separate pin layout data vs. content data.
Diffstat (limited to 'src/client/views/nodes/ScriptingBox.tsx')
-rw-r--r-- | src/client/views/nodes/ScriptingBox.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client/views/nodes/ScriptingBox.tsx b/src/client/views/nodes/ScriptingBox.tsx index 1c9b0bc0e..37afcdd8b 100644 --- a/src/client/views/nodes/ScriptingBox.tsx +++ b/src/client/views/nodes/ScriptingBox.tsx @@ -115,6 +115,7 @@ export class ScriptingBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatable @action componentDidMount() { + this.props.setContentView?.(this); this.rawText = this.rawScript; const observer = new _global.ResizeObserver( action((entries: any) => { @@ -480,6 +481,10 @@ export class ScriptingBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatable return value; } + scrollFocus = () => { + return undefined; + }; + getSuggestedParams(pos: number) { const firstScript = this.rawText.slice(0, pos); const indexP = firstScript.lastIndexOf('.'); |