diff options
author | Fabio Berger <me@fabioberger.com> | 2018-04-12 07:56:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-12 07:56:33 +0800 |
commit | 5eb90697c824f1c98467cdb6cd71dbb94ff70805 (patch) | |
tree | b5e02ec65e8ae5298761f07eae18df145024bb16 /packages/website/ts/components | |
parent | c47fb8f9a83d409c092dd7449054fa16cf0fa1c9 (diff) | |
parent | faedd2fa0b2582ea24ca4624e13ea7466de18408 (diff) | |
download | dexon-sol-tools-5eb90697c824f1c98467cdb6cd71dbb94ff70805.tar dexon-sol-tools-5eb90697c824f1c98467cdb6cd71dbb94ff70805.tar.gz dexon-sol-tools-5eb90697c824f1c98467cdb6cd71dbb94ff70805.tar.bz2 dexon-sol-tools-5eb90697c824f1c98467cdb6cd71dbb94ff70805.tar.lz dexon-sol-tools-5eb90697c824f1c98467cdb6cd71dbb94ff70805.tar.xz dexon-sol-tools-5eb90697c824f1c98467cdb6cd71dbb94ff70805.tar.zst dexon-sol-tools-5eb90697c824f1c98467cdb6cd71dbb94ff70805.zip |
Merge pull request #519 from 0xProject/fix/docImprovements
Doc fixes and improvements
Diffstat (limited to 'packages/website/ts/components')
-rw-r--r-- | packages/website/ts/components/top_bar/top_bar.tsx | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/packages/website/ts/components/top_bar/top_bar.tsx b/packages/website/ts/components/top_bar/top_bar.tsx index 4b2e82119..13351dcdc 100644 --- a/packages/website/ts/components/top_bar/top_bar.tsx +++ b/packages/website/ts/components/top_bar/top_bar.tsx @@ -15,7 +15,7 @@ import { TopBarMenuItem } from 'ts/components/top_bar/top_bar_menu_item'; import { DropDown } from 'ts/components/ui/drop_down'; import { Identicon } from 'ts/components/ui/identicon'; import { Dispatcher } from 'ts/redux/dispatcher'; -import { Deco, Key, ProviderType, WebsitePaths } from 'ts/types'; +import { Deco, Key, ProviderType, WebsiteLegacyPaths, WebsitePaths } from 'ts/types'; import { constants } from 'ts/utils/constants'; import { Translate } from 'ts/utils/translate'; @@ -462,7 +462,10 @@ export class TopBar extends React.Component<TopBarProps, TopBarState> { return _.includes(this.props.location.pathname, WebsitePaths.FAQ); } private _isViewing0xjsDocs() { - return _.includes(this.props.location.pathname, WebsitePaths.ZeroExJs); + return ( + _.includes(this.props.location.pathname, WebsitePaths.ZeroExJs) || + _.includes(this.props.location.pathname, WebsiteLegacyPaths.ZeroExJs) + ); } private _isViewingConnectDocs() { return _.includes(this.props.location.pathname, WebsitePaths.Connect); @@ -471,7 +474,10 @@ export class TopBar extends React.Component<TopBarProps, TopBarState> { return _.includes(this.props.location.pathname, WebsitePaths.SmartContracts); } private _isViewingWeb3WrapperDocs() { - return _.includes(this.props.location.pathname, WebsitePaths.Web3Wrapper); + return ( + _.includes(this.props.location.pathname, WebsitePaths.Web3Wrapper) || + _.includes(this.props.location.pathname, WebsiteLegacyPaths.Web3Wrapper) + ); } private _isViewingDeployerDocs() { return _.includes(this.props.location.pathname, WebsitePaths.Deployer); |