{{ 'SelectImpressionsModal.ChooseMax' | translate }} {{ total }}
\r\n\r\n${this.translateService.instant('Page.503.SectionText')}
`),\r\n };\r\n\r\n this.page.next({\r\n hero: {\r\n textAlign: 'center',\r\n sectionAlign: 'center',\r\n headline: 'Der skete desværre en fejl :(',\r\n // description: 'Sitet kunne ikke loades',\r\n width: 'medium',\r\n backgroundImageUrl: this.nextImagePipe.transform(coverImage, 1920),\r\n // IsNextCoverImage: true,\r\n },\r\n sectionsV2: [\r\n {\r\n columns: [\r\n {\r\n gridEditors: [htmlGridEditor],\r\n width: 100, //'fullWidth', TODO\r\n },\r\n ],\r\n alignment: 'center',\r\n width: 'small',\r\n },\r\n ],\r\n });\r\n await this.router.navigate([PageTypeEnum.Error503], {\r\n skipLocationChange: true,\r\n });\r\n return;\r\n }\r\n if (tempStatusCode === '400') {\r\n // Thomas Olsen wants to handle 400 as 404\r\n tempStatusCode = '404';\r\n }\r\n\r\n let errorPageId = this.appInitService.getErrorPage(tempStatusCode);\r\n if (!errorPageId) {\r\n errorPageId = this.appInitService.getErrorPage('404');\r\n }\r\n if (tempStatusCode && errorPageId) {\r\n this.setPageSettings({\r\n pageId: errorPageId.toString(),\r\n pageUrl: pageUrl,\r\n fromError: true,\r\n });\r\n }\r\n }\r\n\r\n ngOnDestroy() {\r\n this.pageLoadSubscription?.unsubscribe();\r\n }\r\n}\r\n","import { DOCUMENT } from '@angular/common';\r\nimport { Inject, Injectable } from '@angular/core';\r\nimport { IScript } from '../../interfaces/project/script.interface';\r\n\r\n@Injectable()\r\nexport class ScriptService {\r\n private scripts: string[] = [];\r\n constructor(@Inject(DOCUMENT) private $document: Document) {}\r\n\r\n load(scripts: string[]) {\r\n const promises: Promise