mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
15 lines
461 B
CoffeeScript
15 lines
461 B
CoffeeScript
require [
|
|
"libs/bootstrap/bootstrap2full"
|
|
], ()->
|
|
#plans page
|
|
$('a.sign_up_now').on 'click', ->
|
|
ga 'send', 'event', 'button', 'click', 'premium-sign-up'
|
|
$('#annual-pricing').on 'click', ->
|
|
ga 'send', 'event', 'button', 'click', 'student-prices'
|
|
|
|
$('#student-pricing').on 'click', ->
|
|
ga('send', 'event', 'button', 'click', 'student-prices')
|
|
|
|
#plans link
|
|
$('#plansLink').on 'click', ->
|
|
ga 'send', 'event', 'button', 'click', 'plans-link-menu-bar'
|