angular-piwik
angular-piwik copied to clipboard
Angular service for piwik tracking
Hello We are your angular-piwik and we are experiencing some errors. We added the module successfully to our app and placed the following in our html: ``` html ``` This...
This change enables the use of scope variable in the ngp-piwik attr. Which gives the flexibility of passing values rather then hardcoding it.
up
What do you think about providing some option to not add the initial `trackPageView` on https://github.com/mike-spainhower/angular-piwik/blob/master/lib/angular-piwik.coffee#L176 ? I've setup my app to call `trackPageView` whenever UI router notifies me about...
Adds `setCustomDimension`, `getCustomDimension` and `deleteCustomDimension`. See https://github.com/piwik/piwik/issues/9129
Hi everybody, Spending some hours without finding a working solution I tried to load the js-url, tracker-url and site-id configuration from my REST API during custom Angular bootstrapping, then make...
You can now insert config in your directive with something like: ``` ``` using a definition of your constant like: ``` app.constant('piwikConfig', { active: true, urlJs: "http://mypiwiksite.com/piwik.js", urlPhp: "http://mypiwiksite.com/piwik.php", siteId...
After the user logs in to the app I run: ``` Piwik.setUserId(user.id); ``` But nothing shows up in the piwik db for userid. I've also tried: ``` Piwik.setCustomVariable('email', user.email); ```...
Hello, piwik-angular doesn't correctly reference variables when passed in attributes. For example: ``` javascript scope.host = "http://staging.piwik.com" ``` ``` html ``` piwik-angular doesn't pick up the value of host (http://staging.piwik.com/piwik.js)...