overleaf/services/web/public/coffee/main/annual-upgrade.coffee

28 lines
681 B
CoffeeScript
Raw Normal View History

define [
"base"
], (App) ->
App.controller "AnnualUpgradeController", ($scope, $http, $modal) ->
MESSAGES_URL = "/user/subscription/upgrade-annual"
2014-08-29 07:37:00 -04:00
$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)
.success ->
$scope.upgradeComplete = true
.error ->
console.log "something went wrong changing plan"