Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-1895, GH-1896, and GH-1899: Premium promo ux update and telemetry #486

Merged
merged 3 commits into from Dec 16, 2019
Merged
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

Add utm params to Premium promo modal Download clicks

  • Loading branch information
wlycdgr committed Dec 12, 2019
commit 05e75c457e517b04cde16b93ad72eea1342f36df
@@ -76,7 +76,7 @@ class HomeViewContainer extends Component {
window.open(`https://checkout.${DOMAIN}.com/plus?utm_source=gbe&utm_campaign=intro_hub`, '_blank');
break;
case 'premium':
window.open('https://ghostery.com/thanks-for-downloading-midnight', '_blank');
window.open('https://ghostery.com/thanks-for-downloading-midnight?utm_source=gbe&utm_campaign=intro_hub', '_blank');
break;
case 'basic':
default:
@@ -238,7 +238,7 @@ class Panel extends React.Component {
_handlePromoTryMidnightClick = () => {
this.props.actions.togglePromoModal();

const url = 'https://ghostery.com/thanks-for-downloading-midnight';
const url = 'https://ghostery.com/thanks-for-downloading-midnight?utm_source=gbe&utm_campaign=in_app';
sendMessage('openNewTab', {
url,
become_active: true,
ProTip! Use n and p to navigate between commits in a pull request.