mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 20:01:00 +00:00
Use freeTrialBaseUrl instead of potentially fragile v1BaseUrl
This commit is contained in:
parent
b7a43d95e0
commit
7322522323
2 changed files with 7 additions and 7 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue