diff options
| author | geireann <geireann.lindfield@gmail.com> | 2021-07-31 15:32:37 -0400 |
|---|---|---|
| committer | geireann <geireann.lindfield@gmail.com> | 2021-07-31 15:32:37 -0400 |
| commit | 41ccf50f2b551edd6827c9fd6296b9ff87a65915 (patch) | |
| tree | ce080de6978c3a91594feb3473bbd5f21097992b /src/client/views/collections/TabDocView.tsx | |
| parent | fcc75a92643f35955a1e0bbe829e96b0e76c8a4e (diff) | |
linking updates and tab updates
Diffstat (limited to 'src/client/views/collections/TabDocView.tsx')
| -rw-r--r-- | src/client/views/collections/TabDocView.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/client/views/collections/TabDocView.tsx b/src/client/views/collections/TabDocView.tsx index d82810652..a24f1eb7a 100644 --- a/src/client/views/collections/TabDocView.tsx +++ b/src/client/views/collections/TabDocView.tsx @@ -169,7 +169,12 @@ export class TabDocView extends React.Component<TabDocViewProps> { })); //attach the selection doc buttons menu to the drag handle - const stack = tab.contentItem.parent; + const stack: HTMLDivElement = tab.contentItem.parent; + const header: HTMLDivElement = tab; + console.log("Stack: " + stack.id, stack.className) + stack.onscroll = action((e: any) => { + console.log('scrolling...') + }) const moreInfoDrag = document.createElement("div"); moreInfoDrag.className = "lm_iconWrap"; tab._disposers.buttonDisposer = reaction(() => this.view, view => |
