{"version":3,"sources":["AppMain.ts"],"names":["define","require","exports","Navigation","Env","App","ExternalLinksInNewWindow_1","CustomerProfileCard_1","ImageFallback_1","NavigationScrollHideEffect_1","CookieBannerPlaceholder_1","AdminSessionTimer_1","InputExtensions_1","ExternalLinksConfirmationDialog_1","[object Object]","configFile","initialize","appContext","AppContext","this","masterNavigation","MasterNavigation","$","customerProfileCard","CustomerProfileCard","app","AppModel","ExternalLinksInNewWindow","ExternalLinksConfirmationDialog","ImageFallback","NavigationScrollHideEffect","CookieBannerPlaceholder","InputExtensions","AdminSessionTimer"],"mappings":"AAAAA,OAAO,CAAC,UAAW,UAAW,oBAAqB,qBAAsB,aAAc,kCAAmC,6BAA8B,uBAAwB,oCAAqC,iCAAkC,2BAA4B,yBAA0B,0CAA2C,SAAUC,EAASC,EAASC,EAAYC,EAAKC,EAAKC,EAA4BC,EAAuBC,EAAiBC,EAA8BC,EAA2BC,EAAqBC,EAAmBC,GAC3iB,aAkBA,OAjBA,MACIC,IAAIC,GAEAX,EAAIY,WAAWD,GACf,IAAIE,EAAa,IAAIZ,EAAIa,WACzBC,KAAKC,iBAAmB,IAAIjB,EAAWkB,iBAAiBC,EAAE,qBAAqB,IAC/EH,KAAKI,oBAAsB,IAAIhB,EAAsBiB,oBAJ1CL,KAKNM,IAAM,IAAIpB,EAAIqB,SAAST,GAC5B,IAAIX,EAA2BqB,yBAC/B,IAAId,EAAkCe,gCACtC,IAAIpB,EAAgBqB,cACpB,IAAIpB,EAA6BqB,2BACjC,IAAIpB,EAA0BqB,wBAC9B,IAAInB,EAAkBoB,gBACtB,IAAIrB,EAAoBsB","sourcesContent":["import Interfaces = require('./Core/Interfaces');\r\nimport Navigation = require('./Core/Navigation');\r\nimport Env = require('./Core/Environment');\r\nimport App = require('./Core/App');\r\nimport { ExternalLinksInNewWindow } from \"./Core/ExternalLinksInNewWindow\";\r\nimport { CustomerProfileCard } from './Core/CustomerProfileCard';\r\nimport { ImageFallback } from './Core/ImageFallback';\r\nimport { NavigationScrollHideEffect } from './Core/NavigationScrollHideEffect';\r\nimport { CookieBannerPlaceholder } from './Core/CookieBannerPlaceholder';\r\nimport { AdminSessionTimer } from './Core/AdminSessionTimer';\r\nimport { InputExtensions } from './Core/InputExtensions'\r\nimport { ExternalLinksConfirmationDialog } from './Core/ExternalLinksConfirmationDialog';\r\n\r\nclass AppMain {\r\n\r\n public masterNavigation: Navigation.MasterNavigation;\r\n public customerProfileCard: CustomerProfileCard;\r\n public app: App.AppModel;\r\n\r\n run(configFile: Interfaces.IAppConfig): void {\r\n var self = this;\r\n //init environment from config.json\r\n Env.initialize(configFile);\r\n //init js app context\r\n var appContext = new App.AppContext();\r\n //init master navigation\r\n this.masterNavigation = new Navigation.MasterNavigation($('#masterNavigation')[0]);\r\n this.customerProfileCard = new CustomerProfileCard();\r\n // init js app model and load context relevant module\r\n self.app = new App.AppModel(appContext);\r\n // Automatically open external links in new tab\r\n new ExternalLinksInNewWindow();\r\n // Automatically Calls ModalDialog when extern Link is called\r\n new ExternalLinksConfirmationDialog();\r\n // Enable data-fallback attribute for images\r\n new ImageFallback();\r\n // Add scroll effect for screens with less than 500px height (phone landscape mode)\r\n new NavigationScrollHideEffect();\r\n // Push down the navigation elements if the cookie banner is displayed\r\n new CookieBannerPlaceholder();\r\n\r\n new InputExtensions();\r\n\r\n new AdminSessionTimer();\r\n } \r\n}\r\n\r\nexport = AppMain"],"file":"AppMain.js"}