Use freeTrialBaseUrl instead of potentially fragile v1BaseUrl

This commit is contained in:
Alasdair Smith 2017-12-14 17:05:12 +00:00
parent b7a43d95e0
commit 7322522323
2 changed files with 7 additions and 7 deletions

View file

@ -98,7 +98,10 @@ html(itemscope, itemtype='http://schema.org/Product')
- if (settings.overleaf && settings.overleaf.host)
script.
window.v1BaseUrl = '!{settings.overleaf.host}'
window.freeTrialBaseUrl = '!{settings.overleaf.host}/users/trial'
- else
script.
window.freeTrialBaseUrl = '/user/subscription/new'
body
if(settings.recaptcha)

View file

@ -11,12 +11,9 @@ define [
w = window.open()
go = () ->
ga?('send', 'event', 'subscription-funnel', 'upgraded-free-trial', source)
if window.v1BaseUrl?
url = "#{window.v1BaseUrl}/users/trial"
else
url = "/user/subscription/new?planCode=#{plan}&ssp=true"
if couponCode?
url = "#{url}&cc=#{couponCode}"
url = "#{window.freeTrialBaseUrl}?planCode=#{plan}&ssp=true"
if couponCode?
url = "#{url}&cc=#{couponCode}"
$scope.startedFreeTrial = true
switch source