diff options
| author | Fabio Berger <me@fabioberger.com> | 2018-08-08 21:33:20 +0800 | 
|---|---|---|
| committer | Fabio Berger <me@fabioberger.com> | 2018-08-08 21:33:20 +0800 | 
| commit | 386b5bb122c189496e83da46cf53e8dfe83f0ee6 (patch) | |
| tree | e532861d7087809299922a138d0920e3cd537a43 /packages | |
| parent | ca67e7d36fb5eb91626a60156dbec4f67a7d52f7 (diff) | |
| download | dexon-sol-tools-386b5bb122c189496e83da46cf53e8dfe83f0ee6.tar.gz dexon-sol-tools-386b5bb122c189496e83da46cf53e8dfe83f0ee6.tar.zst dexon-sol-tools-386b5bb122c189496e83da46cf53e8dfe83f0ee6.zip | |
Add back hashSpy
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/react-docs/src/components/type.tsx | 1 | ||||
| -rw-r--r-- | packages/react-shared/src/components/anchor_title.tsx | 1 | ||||
| -rw-r--r-- | packages/react-shared/src/components/nested_sidebar_menu.tsx | 2 | 
3 files changed, 4 insertions, 0 deletions
| diff --git a/packages/react-docs/src/components/type.tsx b/packages/react-docs/src/components/type.tsx index 7e96f75c3..1c580caab 100644 --- a/packages/react-docs/src/components/type.tsx +++ b/packages/react-docs/src/components/type.tsx @@ -204,6 +204,7 @@ export function Type(props: TypeProps): any {              <ScrollLink                  to={typeDefinitionAnchorId}                  offset={0} +                hashSpy={true}                  duration={sharedConstants.DOCS_SCROLL_DURATION_MS}                  containerId={sharedConstants.DOCS_CONTAINER_ID}              > diff --git a/packages/react-shared/src/components/anchor_title.tsx b/packages/react-shared/src/components/anchor_title.tsx index 01857aa6b..451ba1729 100644 --- a/packages/react-shared/src/components/anchor_title.tsx +++ b/packages/react-shared/src/components/anchor_title.tsx @@ -69,6 +69,7 @@ export class AnchorTitle extends React.Component<AnchorTitleProps, AnchorTitleSt                  </div>                  <ScrollLink                      to={this.props.id} +                    hashSpy={true}                      offset={headerSizeToScrollOffset[this.props.headerSize]}                      duration={constants.DOCS_SCROLL_DURATION_MS}                      containerId={constants.DOCS_CONTAINER_ID} diff --git a/packages/react-shared/src/components/nested_sidebar_menu.tsx b/packages/react-shared/src/components/nested_sidebar_menu.tsx index aef56690f..c8bddb59a 100644 --- a/packages/react-shared/src/components/nested_sidebar_menu.tsx +++ b/packages/react-shared/src/components/nested_sidebar_menu.tsx @@ -94,6 +94,7 @@ export class NestedSidebarMenu extends React.Component<NestedSidebarMenuProps, N                          key={`menuItem-${menuItemName}`}                          to={id}                          offset={0} +                        hashSpy={true}                          duration={constants.DOCS_SCROLL_DURATION_MS}                          containerId={constants.DOCS_CONTAINER_ID}                      > @@ -124,6 +125,7 @@ export class NestedSidebarMenu extends React.Component<NestedSidebarMenuProps, N                              <ScrollLink                                  to={id}                                  offset={0} +                                hashSpy={true}                                  duration={constants.DOCS_SCROLL_DURATION_MS}                                  containerId={constants.DOCS_CONTAINER_ID}                              > | 
