diff options
author | Fabio Berger <me@fabioberger.com> | 2018-03-03 12:36:08 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-03-03 12:36:08 +0800 |
commit | 0afe45b3a830bfefc4f9b51823891b99be5261fa (patch) | |
tree | d79f136cf5df69c3c85557bcd11616ca74ab505b /packages/website/ts/pages/documentation | |
parent | f9a37168b034dd20868d1ffe1d2934db6effd39a (diff) | |
download | dexon-sol-tools-0afe45b3a830bfefc4f9b51823891b99be5261fa.tar dexon-sol-tools-0afe45b3a830bfefc4f9b51823891b99be5261fa.tar.gz dexon-sol-tools-0afe45b3a830bfefc4f9b51823891b99be5261fa.tar.bz2 dexon-sol-tools-0afe45b3a830bfefc4f9b51823891b99be5261fa.tar.lz dexon-sol-tools-0afe45b3a830bfefc4f9b51823891b99be5261fa.tar.xz dexon-sol-tools-0afe45b3a830bfefc4f9b51823891b99be5261fa.tar.zst dexon-sol-tools-0afe45b3a830bfefc4f9b51823891b99be5261fa.zip |
Hash hash instead of prefixedHash to scrollToHash function
Diffstat (limited to 'packages/website/ts/pages/documentation')
-rw-r--r-- | packages/website/ts/pages/documentation/documentation.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/website/ts/pages/documentation/documentation.tsx b/packages/website/ts/pages/documentation/documentation.tsx index 5963fe851..699bef7a8 100644 --- a/packages/website/ts/pages/documentation/documentation.tsx +++ b/packages/website/ts/pages/documentation/documentation.tsx @@ -76,7 +76,8 @@ const styles: Styles = { export class Documentation extends React.Component<DocumentationProps, DocumentationState> { public componentDidUpdate(prevProps: DocumentationProps, prevState: DocumentationState) { if (!_.isEqual(prevProps.docAgnosticFormat, this.props.docAgnosticFormat)) { - utils.scrollToHash(this.props.location.hash, configs.SCROLL_CONTAINER_ID); + const hash = this.props.location.hash.slice(1); + utils.scrollToHash(hash, configs.SCROLL_CONTAINER_ID); } } public render() { |