Welcome to mirror list, hosted at ThFree Co, Russian Federation.

track_learn_gitlab.js « learn_gitlab « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 305d130f10cd842e557100e915de44b0db32a05e (plain)
1
2
3
4
5
6
7
8
9
10
import Tracking from '~/tracking';

export default function trackLearnGitlab(learnGitlabA) {
  Tracking.event('projects:learn_gitlab:index', 'page_init', {
    label: 'learn_gitlab',
    property: learnGitlabA
      ? 'Growth::Conversion::Experiment::LearnGitLabA'
      : 'Growth::Activation::Experiment::LearnGitLabB',
  });
}