mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
28 lines
No EOL
678 B
CoffeeScript
28 lines
No EOL
678 B
CoffeeScript
define [
|
|
"base"
|
|
], (App) ->
|
|
App.controller "AnnualUpgradeController", ($scope, $http, $modal) ->
|
|
|
|
MESSAGES_URL = "/user/subscription/upgrade-annual"
|
|
|
|
$scope.upgradeComplete = false
|
|
savings =
|
|
student:"19.2"
|
|
collaborator:"36"
|
|
$scope.$watch $scope.planName, ->
|
|
$scope.yearlySaving = savings[$scope.planName]
|
|
if $scope.planName == "annual"
|
|
$scope.upgradeComplete = true
|
|
$scope.completeAnnualUpgrade = ->
|
|
body =
|
|
planName: $scope.planName
|
|
_csrf : window.csrfToken
|
|
|
|
$scope.inflight = true
|
|
|
|
|
|
$http.post(MESSAGES_URL, body)
|
|
.then ->
|
|
$scope.upgradeComplete = true
|
|
.catch ->
|
|
console.log "something went wrong changing plan" |