mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-06 02:43:58 +00:00
Don't call participate if should not test plans
This commit is contained in:
parent
e268275e77
commit
ae2d030a32
1 changed files with 9 additions and 5 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue