Skip to content

Commit

Permalink
Deploy latest build
Browse files Browse the repository at this point in the history
  • Loading branch information
egon-development committed Apr 4, 2024
1 parent 785c324 commit bcb50dd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
18 changes: 12 additions & 6 deletions app-latest-build/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -10574,12 +10574,12 @@ function AppComponent_app_settings_1_Template(rf, ctx) {
}
}
class AppComponent {
constructor(settingsService, dialogService, titleService, exportService, replayStateSerice, replayService) {
constructor(settingsService, dialogService, titleService, exportService, replayStateService, replayService) {
this.settingsService = settingsService;
this.dialogService = dialogService;
this.titleService = titleService;
this.exportService = exportService;
this.replayStateSerice = replayStateSerice;
this.replayStateService = replayStateService;
this.version = _environments_environment__WEBPACK_IMPORTED_MODULE_2__.environment.version;
this.showSettings$ = new rxjs__WEBPACK_IMPORTED_MODULE_13__.BehaviorSubject(false);
this.showDescription$ = new rxjs__WEBPACK_IMPORTED_MODULE_13__.BehaviorSubject(true);
Expand All @@ -10596,12 +10596,12 @@ class AppComponent {
e.preventDefault();
e.stopPropagation();
}
if (e.key === 'ArrowRight' && this.replayStateSerice.getReplayOn()) {
if (e.key === 'ArrowRight' && this.replayStateService.getReplayOn()) {
e.preventDefault();
e.stopPropagation();
replayService.nextStep();
}
if (e.key === 'ArrowLeft' && this.replayStateSerice.getReplayOn()) {
if (e.key === 'ArrowLeft' && this.replayStateService.getReplayOn()) {
e.preventDefault();
e.stopPropagation();
replayService.previousStep();
Expand All @@ -10625,9 +10625,9 @@ class AppComponent {
static #_2 = this.ɵcmp = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵdefineComponent"]({
type: AppComponent,
selectors: [["app-root"]],
decls: 28,
decls: 34,
vars: 36,
consts: [["role", "main", 1, "content"], [4, "ngIf"], ["type", "color", "id", "colorPicker", 2, "display", "none"], ["src", "./favicon.ico", "height", "24", "alt", "Egon Logo"], ["href", "https://egon.io", "target", "_blank"], ["href", "https://github.com/WPS/egon.io/releases/latest", "target", "_blank"], ["src", "./assets/logo/wps-icon.ico", "height", "24", "alt", "WPS Logo"], ["href", "https://www.wps.de/", "target", "_blank"]],
consts: [["role", "main", 1, "content"], [4, "ngIf"], ["type", "color", "id", "colorPicker", 2, "display", "none"], ["src", "./favicon.ico", "height", "24", "alt", "Egon Logo"], ["href", "https://egon.io", "target", "_blank"], ["href", "https://github.com/WPS/egon.io/releases/latest", "target", "_blank"], ["src", "./assets/logo/wps-icon.ico", "height", "24", "alt", "WPS Logo"], ["href", "https://www.wps.de/", "target", "_blank"], ["href", "https://www.wps.de/datenschutz/", "target", "_blank"], ["href", "https://www.wps.de/impressum/", "target", "_blank"]],
template: function AppComponent_Template(rf, ctx) {
if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "div", 0);
Expand Down Expand Up @@ -10662,6 +10662,12 @@ class AppComponent {
_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelement"](25, "img", 6);
_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](26, "a", 7);
_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](27, "WPS");
_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()();
_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](28, "span")(29, "a", 8);
_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](30, "Privacy");
_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()();
_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](31, "span")(32, "a", 9);
_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](33, "Imprint");
_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()()()();
}
if (rf & 2) {
Expand Down
2 changes: 1 addition & 1 deletion app-latest-build/main.js.map

Large diffs are not rendered by default.

0 comments on commit bcb50dd

Please sign in to comment.