()
| 34 | } |
| 35 | |
| 36 | async trackPageView () { |
| 37 | await this.initializationComplete |
| 38 | const name = Backbone.history.getFragment() |
| 39 | this.trackEventInternal('Pageview', { url: name, href: window.location.href }) |
| 40 | } |
| 41 | |
| 42 | async trackEvent (action, properties = {}) { |
| 43 | await this.initializationComplete |
nothing calls this directly
no test coverage detected