mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-12 07:22:54 -05:00
10 lines
258 B
JavaScript
10 lines
258 B
JavaScript
|
define(['base'], App =>
|
||
|
App.controller('UpgradeSubscriptionController', function(
|
||
|
$scope,
|
||
|
eventTracking
|
||
|
) {
|
||
|
$scope.upgradeSubscription = function() {
|
||
|
eventTracking.send('subscription-funnel', 'subscription-page', 'upgrade')
|
||
|
}
|
||
|
}))
|