overleaf/services/web/public/coffee/main/account-upgrade.coffee
2015-11-17 11:41:39 +00:00

17 lines
No EOL
648 B
CoffeeScript

define [
"base"
], (App) ->
App.controller "FreeTrialModalController", ($scope, abTestManager, sixpack)->
$scope.buttonClass = "btn-primary"
$scope.startFreeTrial = (source, couponCode) ->
sixpack.convert "track-changes-discount", ->
sixpack.participate 'free-trial-plan', ['student', 'collaborator'], (planName, rawResponse)->
ga?('send', 'event', 'subscription-funnel', 'upgraded-free-trial', source)
url = "/user/subscription/new?planCode=#{planName}_free_trial_7_days&ssp=#{planName == 'collaborator'}"
if couponCode?
url = "#{url}&cc=#{couponCode}"
window.open(url)
$scope.startedFreeTrial = true