diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-08-25 06:59:14 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-08-25 06:59:14 +0800 |
commit | ad161a973e5453ec267510f54d88621517254039 (patch) | |
tree | 7516ec93a492bb01e2995fd31b19edaa30e3a7cd /packages/website/ts/components/top_bar | |
parent | 103e1aa250bc6ce3189aec5ab373f5644c6d4a93 (diff) | |
download | dexon-0x-contracts-ad161a973e5453ec267510f54d88621517254039.tar.gz dexon-0x-contracts-ad161a973e5453ec267510f54d88621517254039.tar.zst dexon-0x-contracts-ad161a973e5453ec267510f54d88621517254039.zip |
Change all onTouchTap to onClick
Diffstat (limited to 'packages/website/ts/components/top_bar')
-rw-r--r-- | packages/website/ts/components/top_bar/top_bar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/website/ts/components/top_bar/top_bar.tsx b/packages/website/ts/components/top_bar/top_bar.tsx index 9ef8211a9..8580c3a6e 100644 --- a/packages/website/ts/components/top_bar/top_bar.tsx +++ b/packages/website/ts/components/top_bar/top_bar.tsx @@ -410,7 +410,7 @@ export class TopBar extends React.Component<TopBarProps, TopBarState> { <MenuItem className="py2">{this.props.translate.get(Key.Blog, Deco.Cap)}</MenuItem> </a> <Link to={`${WebsitePaths.FAQ}`} className="text-decoration-none"> - <MenuItem className="py2" onTouchTap={this._onMenuButtonClick.bind(this)}> + <MenuItem className="py2" onClick={this._onMenuButtonClick.bind(this)}> {this.props.translate.get(Key.Faq, Deco.Cap)} </MenuItem> </Link> |