diff options
| author | bobzel <zzzman@gmail.com> | 2021-08-06 10:34:57 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-08-06 10:34:57 -0400 |
| commit | d756ffd3daa24270361648454062e98f190ae964 (patch) | |
| tree | 483340406733fd34ff0a92115e7936ef28e2366c /src/client/views/collections/TabDocView.tsx | |
| parent | b25921a0cbdb431726e7089fabdd08fe43c6b3de (diff) | |
fixed webboxes so that you can link to an annotation and it will restore the url as well. a bunch of warnings cleanup.
Diffstat (limited to 'src/client/views/collections/TabDocView.tsx')
| -rw-r--r-- | src/client/views/collections/TabDocView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/TabDocView.tsx b/src/client/views/collections/TabDocView.tsx index 1f73793b6..1969d728c 100644 --- a/src/client/views/collections/TabDocView.tsx +++ b/src/client/views/collections/TabDocView.tsx @@ -172,8 +172,8 @@ export class TabDocView extends React.Component<TabDocViewProps> { const stack: HTMLDivElement = tab.contentItem.parent; const header: HTMLDivElement = tab; stack.onscroll = action((e: any) => { - console.log('scrolling...') - }) + console.log('scrolling...'); + }); const moreInfoDrag = document.createElement("div"); moreInfoDrag.className = "lm_iconWrap"; tab._disposers.buttonDisposer = reaction(() => this.view, view => |
