Fork me on GitHub
#hoplon
<
2015-11-10
>
thedavidmeister11:11:59

@micha: the cljsjs approach for GA worked a treat

thedavidmeister11:11:38

`
  (:require
    [cljsjs.google-analytics]))

; Track a pageview.
(.ga js/window "create" “UA-XXXXXXX-YY" "auto")
(.ga js/window "send" "pageview”)
`

thedavidmeister11:11:49

all i ended up needing to do

andrewboltachev14:11:51

thanks @flyboarder ! I'll check this out