Skip to content

Commit

Permalink
Remove javascript:void(0)
Browse files Browse the repository at this point in the history
  • Loading branch information
sienori committed Apr 5, 2020
1 parent facd2a0 commit e25e34b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/options/components/SignInButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ export default class SignInButton extends Component {

render() {
const signInButton = (
<a href="javascript:void(0);" onClick={this.handleSignInClick}>
<a
style={{ cursor: "pointer" }}
onClick={this.handleSignInClick}
title={browser.i18n.getMessage("signInLabel")}
>
<img src="/icons/google_signin.png" alt={browser.i18n.getMessage("signInLabel")} />
</a>
);
Expand Down

0 comments on commit e25e34b

Please sign in to comment.