diff options
author | bobzel <zzzman@gmail.com> | 2021-03-04 20:22:00 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-04 20:22:00 -0500 |
commit | 47e0c97b04a67b3bad1f2c789145a92ba7069f1e (patch) | |
tree | 2ebc643fb534407a8f595b2f0ab1d1e851c32a0e /src/client/views/nodes/FunctionPlotBox.tsx | |
parent | 454f004e7249c78696fa7085fcf10c59ab8e327a (diff) |
fixed scrolling of web pages and fitwidth for web pages.
Diffstat (limited to 'src/client/views/nodes/FunctionPlotBox.tsx')
-rw-r--r-- | src/client/views/nodes/FunctionPlotBox.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/nodes/FunctionPlotBox.tsx b/src/client/views/nodes/FunctionPlotBox.tsx index 9094651f3..e8bec9676 100644 --- a/src/client/views/nodes/FunctionPlotBox.tsx +++ b/src/client/views/nodes/FunctionPlotBox.tsx @@ -57,7 +57,6 @@ export class FunctionPlotBox extends ViewBoxBaseComponent<FieldViewProps, Equati const width = this.props.PanelWidth(); const height = this.props.PanelHeight(); const fn = StrCast(DocListCast(this.dataDoc.data).lastElement()?.text, "x^2").replace(/\\frac\{(.*)\}\{(.*)\}/, "($1/$2)"); - console.log("Graphing:" + fn); try { this._plot = functionPlot({ target: "#" + this._plotEle.id, |