So as the question title says, I have an object in my $rootScope (let's call it $rootScope.appConfiguration), which takes a value in the .run of my module:
angular.module('myapp',[...])
.provider('appConfigurationProvider',function(){...})
.constant(...)
.run(function($rootScope) {
$rootScope.appConfiguration = appConfiguration;
});
(The ... parts are just skipped code, to make things more readable)
Then my in my index.html I am implementing angulartics-piwik:
<body ng-app>
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
//_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u = appConfiguration.PiwikUrl;
_paq.push(['setTrackerUrl', u + 'piwik.php']);
_paq.push(['setSiteId', appConfiguration.PiwikSiteId]);
var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
g.type = 'text/javascript';
g.async = true;
g.defer = true;
g.src = u + 'piwik.js';
s.parentNode.insertBefore(g, s);
})();
</script>
<!-- End Piwik Code -->
...
As you can see I want to use 2 values from my appConfiguration object, PiwikUrl and PiwikSiteId but I have no idea how to "pass" the object in the javascript. Obviously as the code is now I'm getting an "appConfiguration is not defined" error message..
I'd suggest a different approach, using a service and a configuration constant (you can combine them in a provider):
The constant definition:
The service:
You can then use this new service to initialize Piwik in a run block.