ember-cli-google-analytics icon indicating copy to clipboard operation
ember-cli-google-analytics copied to clipboard

Ember CLI addon that adds the Google Analytics tracking code

Results 16 ember-cli-google-analytics issues
Sort by recently updated
recently updated
newest added

Hi, I am the creator and maintainer of [@onehilltech/ember-cli-google-analytics](https://github.com/onehilltech/ember-cli-google/tree/master/packages/ember-cli-google-analytics). It is part of a collection of packages from the [ember-cli-google](https://github.com/onehilltech/ember-cli-google) project. I have noticed that this project is no longer...

Should this plugin work with Ember CLI 0.2.5? I added it to my project as described in the readme but I get this error when visiting the page: ``` Uncaught...

This PR upgrades the package to use Ember CLI 2.16

We are in a situation where not all of our customers want analytics being tracked so we want to add its as a switchable feature (not requiring a build).

I needed to add more configuration statements in my Analytics initialization, so here is my implementation ``` javascript ENV.googleAnalytics = { webPropertyId: process.env.GOOGLE_ANALYTICS_ID, extraCreateParams: {"allowLinker": true}, extraRequires: ["linker"], extraStatements: [{...

As [noted in the README](https://github.com/pgrippi/ember-cli-google-analytics#warning-content-security-policy), this addon uses `contentFor` to inject a `...` into the HTML. Content-Security-Policy v2 requires all such tags have a cryptographic signature. See https://www.w3.org/TR/2015/CR-CSP2-20150721/#script-src-hash-usage Would it...

The event `didTransition` is never called. If I change this code: ``` # mixins/google-pageview.js export default Ember.Mixin.create({ ``` for this: ``` # mixins/google-pageview.js Ember.Router.reopen({ ``` The event `didTransition` is starting...

This sets the `page` and `title` separately from sending the pageview. More here: https://developers.google.com/analytics/devguides/collection/analyticsjs/single-page-applications#tracking_virtual_pageviews Also refactored the code a tiny bit.

Our app has information in URLs that is quite sensitive -- such as password-reset tokens, invitation tokens, and internal user IDs. We don't want to send that information to Google....