mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
14 lines
491 B
JavaScript
14 lines
491 B
JavaScript
|
import App from '../base'
|
||
|
import { startFreeTrial, upgradePlan } from './account-upgrade'
|
||
|
|
||
|
App.controller('FreeTrialModalController', function($scope, eventTracking) {
|
||
|
$scope.buttonClass = 'btn-primary'
|
||
|
$scope.startFreeTrial = (source, version) =>
|
||
|
startFreeTrial(source, version, $scope, eventTracking)
|
||
|
})
|
||
|
|
||
|
App.controller('UpgradeModalController', function($scope, eventTracking) {
|
||
|
$scope.buttonClass = 'btn-primary'
|
||
|
$scope.upgradePlan = source => upgradePlan(source, $scope)
|
||
|
})
|