changed ab test from 30 -> 14 to 14 -> 7

This commit is contained in:
Henry Oswald 2014-09-26 10:56:45 +01:00
parent d5f816598d
commit 21f46da08a
5 changed files with 4 additions and 10 deletions

View file

@ -126,11 +126,5 @@ html(itemscope, itemtype='http://schema.org/Product')
category: "questions"
};
span(ng-controller="AbTestController")
//- script.
//- window.ab = [
//- {step:1, bucket:"14d", testName:"trial_len"},
//- {step:2, bucket:"30d", testName:"trial_len"}
//- ]

View file

@ -29,5 +29,5 @@ block content
window.ab = [
{step:1, bucket:"14d", testName:"trial_len"},
{step:1, bucket:"30d", testName:"trial_len"}
{step:1, bucket:"7d", testName:"trial_len"}
]

View file

@ -36,5 +36,5 @@ block content
script(type="text/javascript").
window.ab = [
{step:2, bucket:"14d", testName:"trial_len"},
{step:2, bucket:"30d", testName:"trial_len"}
{step:2, bucket:"7d", testName:"trial_len"}
]

View file

@ -66,7 +66,7 @@ define [
$scope.startFreeTrial = (source) ->
buckets = [
{ bucketName:"30d", planCode: "student_free_trial" }
{ bucketName:"7d", planCode: "student_free_trial_7_days" }
{ bucketName:"14d", planCode: "student_free_trial_14_days" }
]
bucket = abTestManager.getABTestBucket "trial_len", buckets

View file

@ -60,7 +60,7 @@ define [
App.controller "PlansController", ($scope, $modal, event_tracking, abTestManager, MultiCurrencyPricing) ->
buckets = [
{ bucketName:"30d", queryString: "_free_trial", trial_len:30 }
{ bucketName:"7d", queryString: "_free_trial_7_days", trial_len:30 }
{ bucketName:"14d", queryString: "_free_trial_14_days", trial_len:14 }
]
bucket = abTestManager.getABTestBucket "trial_len", buckets