-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add AB testing setup for July 2016 session
This commit sets up AB test for the following smart answers: * overseas-passport * calculate-your-child-maintenance * marriage-abroad Cohorts across the aforementioned smart answers fall under the following. * Start now * Continue * Next
- Loading branch information
1 parent
dcdd78e
commit 657c607
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
//= require govuk/multivariate-test | ||
|
||
$(function(){ | ||
if(isExpectedPath("overseas-passports")) { | ||
new GOVUK.MultivariateTest({ | ||
el: '.get-started a', | ||
name: 'startButton_osPassport_201607', | ||
customDimensionIndex: [13, 14], | ||
cookieDuration: 2, // set cookie expiry to 2 days | ||
contentExperimentId: 'cZbCgQy3SOCHEX2l6bU-eQ', | ||
cohorts: { | ||
original: { callback: function() {}, variantId: 0}, | ||
next: { html: 'Next', variantId: 1 }, | ||
continue: { html: 'Continue', variantId: 2 } | ||
} | ||
}); | ||
} | ||
|
||
if(isExpectedPath("calculate-your-child-maintenance")) { | ||
new GOVUK.MultivariateTest({ | ||
el: '.get-started a', | ||
name: 'startButton_calcChildM_201607', | ||
customDimensionIndex: [13, 14], | ||
cookieDuration: 2, // set cookie expiry to 2 days | ||
contentExperimentId: '02HyTKtNR-yHsYlI6JoJqg', | ||
cohorts: { | ||
original: { callback: function() {}, variantId: 0}, | ||
next: { html: 'Next', variantId: 1 }, | ||
continue: { html: 'Continue', variantId: 2 } | ||
} | ||
}); | ||
} | ||
|
||
if(isExpectedPath("marriage-abroad")) { | ||
new GOVUK.MultivariateTest({ | ||
el: '.get-started a', | ||
name: 'startButton_marriageAbroad_201607', | ||
customDimensionIndex: [13, 14], | ||
cookieDuration: 2, // set cookie expiry to 2 days | ||
contentExperimentId: 'ABoraDMOQCC9WjJWsTpIPg', | ||
cohorts: { | ||
original: { callback: function() {}, variantId: 0}, | ||
next: { html: 'Next', variantId: 1 }, | ||
continue: { html: 'Continue', variantId: 2 } | ||
} | ||
}); | ||
} | ||
}); |