diff --git a/services/web/public/coffee/main/account-upgrade.coffee b/services/web/public/coffee/main/account-upgrade.coffee index 1d7b19f09e..bf879b3ef4 100644 --- a/services/web/public/coffee/main/account-upgrade.coffee +++ b/services/web/public/coffee/main/account-upgrade.coffee @@ -6,12 +6,12 @@ define [ $scope.buttonClass = "btn-primary" $scope.startFreeTrial = (source, couponCode) -> + w = window.open() 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 \ No newline at end of file + 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}" + $scope.startedFreeTrial = true + w.location = url