When writing an ajax or js-based app with multiple views, what's the best way to maintain the app state with the utag, with regards to analytics. We use Coremetrics and we're currently doing the following (angularJS) route change event. utag_data.page_type = newRoute.$$route.utag_page_type; utag_data.page_id = newRoute.$$route.utag_page_id; utag_data.category_id = newRoute.$$route.utag_category_id; utag.view(utag_data); The issue is that the tags fire but some seem to be incorrect or not pulling the configurations that are set to them. In particular, the Coremetrics client ID is not set properly. Is there anything on the tag template end that needs to be updated in order to make sure the correct data gets sent through when the view is called? If there's a full API doc of the utag lib and what's at disposal for calling, that'd be helpful as well. Thanks
... View more