import { ApplicationConfig } from './common/entities/ApplicationConfig'; export function run(mixpanelNew: Mixpanel, APP_CONFIG: ApplicationConfig, $anchorScroll: ng.IAnchorScrollService) { mixpanelNew.init(APP_CONFIG.MIXPANEL_TOKEN, { api_host: "https://api.mixpanel.com" }); // Ensure that the anchor scroll goes slightly higher than the element hash, otherwise the fixed header obscures the element on mobile $anchorScroll.yOffset = 60; }