diff --git a/services/web/public/coffee/main/account-settings.coffee b/services/web/public/coffee/main/account-settings.coffee index 54cd8de1ea..82d323110e 100644 --- a/services/web/public/coffee/main/account-settings.coffee +++ b/services/web/public/coffee/main/account-settings.coffee @@ -1,7 +1,7 @@ define [ "base" ], (App) -> - App.controller "AccountSettingsController", ["$scope", "$http", "$modal", ($scope, $http, $modal) -> + App.controller "AccountSettingsController", ["$scope", "$http", "$modal", "event_tracking", ($scope, $http, $modal, event_tracking) -> $scope.subscribed = true $scope.unsubscribe = () -> @@ -24,6 +24,9 @@ define [ controller: "DeleteAccountModalController", scope: $scope ) + + $scope.upgradeIntegration = (service) -> + event_tracking.send 'subscription-funnel', 'settings-page', service ] App.controller "DeleteAccountModalController", [