mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-04 17:11:20 +00:00
Transform absolute paths in frontend to relative GitOrigin-RevId: c1914c0fd09d68984ba6c85a1f00aa3e6858d944
35 lines
903 B
JavaScript
35 lines
903 B
JavaScript
define(['../base'], App =>
|
|
App.controller('FreeTrialModalController', function($scope, eventTracking) {
|
|
$scope.buttonClass = 'btn-primary'
|
|
|
|
$scope.startFreeTrial = function(source, version) {
|
|
const plan = 'collaborator_free_trial_7_days'
|
|
|
|
const w = window.open()
|
|
const go = function() {
|
|
let url
|
|
if (typeof ga === 'function') {
|
|
ga(
|
|
'send',
|
|
'event',
|
|
'subscription-funnel',
|
|
'upgraded-free-trial',
|
|
source
|
|
)
|
|
}
|
|
url = `/user/subscription/new?planCode=${plan}&ssp=true`
|
|
url = `${url}&itm_campaign=${source}`
|
|
if (version) {
|
|
url = `${url}&itm_content=${version}`
|
|
}
|
|
|
|
$scope.startedFreeTrial = true
|
|
|
|
eventTracking.sendMB('subscription-start-trial', { source, plan })
|
|
|
|
w.location = url
|
|
}
|
|
|
|
go()
|
|
}
|
|
}))
|