mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
dda4ce18d3
Add missing Google Analytics events GitOrigin-RevId: 37f8ca52829ea00bd73b2cd1e0045c48839ea970
9 lines
258 B
JavaScript
9 lines
258 B
JavaScript
define(['base'], App =>
|
|
App.controller('UpgradeSubscriptionController', function(
|
|
$scope,
|
|
eventTracking
|
|
) {
|
|
$scope.upgradeSubscription = function() {
|
|
eventTracking.send('subscription-funnel', 'subscription-page', 'upgrade')
|
|
}
|
|
}))
|