Skip to content

Commit

Permalink
fix: open clickthrough in new tab/window (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
OrenMe authored and Dan Ziv committed Oct 17, 2017
1 parent 4eef7b7 commit ef4ce38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ad-learn-more/ad-learn-more.js
Expand Up @@ -29,7 +29,7 @@ class AdLearnMore extends Component {
* @memberof AdLearnMore
*/
render(props: any): React$Element<any> {
return <a href={props.url} target='new' className={[style.btn, style.btnDarkTransparent].join(' ')}>Learn more</a>
return <a href={props.url} target='_blank' className={[style.btn, style.btnDarkTransparent].join(' ')}>Learn more</a>
}
}

Expand Down

0 comments on commit ef4ce38

Please sign in to comment.