mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
11 lines
262 B
JavaScript
11 lines
262 B
JavaScript
|
import App from '../../../base'
|
||
|
|
||
|
export default App.controller(
|
||
|
'LeftMenuDocumentationController',
|
||
|
function ($scope, eventTracking) {
|
||
|
$scope.sendLeftMenuDocumentationEvent = () => {
|
||
|
eventTracking.sendMB('left-menu-documentation-click')
|
||
|
}
|
||
|
}
|
||
|
)
|