Don't call participate if should not test plans

This commit is contained in:
Shane Kilkelly 2016-10-25 11:46:52 +01:00
parent e268275e77
commit ae2d030a32

View file

@ -9,15 +9,19 @@ define [
plan = 'collaborator_free_trial_7_days'
w = window.open()
sixpack.participate 'plans-1610', ['default', 'heron', 'ibis'], (chosenVariation, rawResponse)->
if $scope.shouldABTestPlans and chosenVariation in ['heron', 'ibis']
plan = "collaborator_#{chosenVariation}"
go = () ->
ga?('send', 'event', 'subscription-funnel', 'upgraded-free-trial', source)
url = "/user/subscription/new?planCode=#{plan}&ssp=true"
if couponCode?
url = "#{url}&cc=#{couponCode}"
$scope.startedFreeTrial = true
event_tracking.sendMB "subscription-start-trial", { source, plan}
w.location = url
if $scope.shouldABTestPlans
sixpack.participate 'plans-1610', ['default', 'heron', 'ibis'], (chosenVariation, rawResponse)->
if chosenVariation in ['heron', 'ibis']
plan = "collaborator_#{chosenVariation}"
go()
else
go()