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/utils | |
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/utils')
-rw-r--r-- | packages/website/ts/utils/utils.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/website/ts/utils/utils.ts b/packages/website/ts/utils/utils.ts index 27cd87be1..a1e045af7 100644 --- a/packages/website/ts/utils/utils.ts +++ b/packages/website/ts/utils/utils.ts @@ -297,13 +297,13 @@ export const utils = { const baseUrl = `https://${window.location.hostname}${hasPort ? `:${port}` : ''}`; return baseUrl; }, - scrollToHash(hashWithPrefix: string, containerId: string): void { - let hash = hashWithPrefix.slice(1); + scrollToHash(hash: string, containerId: string): void { + let finalHash = hash; if (_.isEmpty(hash)) { - hash = configs.SCROLL_TOP_ID; // scroll to the top + finalHash = configs.SCROLL_TOP_ID; // scroll to the top } - scroller.scrollTo(hash, { + scroller.scrollTo(finalHash, { duration: 0, offset: 0, containerId, |