Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hofstef committed Sep 25, 2024
2 parents eb00778 + b92ba6a commit d0458d1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions app-latest-build/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -5491,7 +5491,7 @@ function ExportDialogComponent_Conditional_18_Template(rf, ctx) {
if (rf & 1) {
const _r1 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"]();
_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "span");
_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtext"](1, "Animation speed:");
_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtext"](1, " - animation speed:");
_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](2, "input", 7);
_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtwoWayListener"]("ngModelChange", function ExportDialogComponent_Conditional_18_Template_input_ngModelChange_2_listener($event) {
Expand Down Expand Up @@ -5612,7 +5612,7 @@ class ExportDialogComponent {
_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("click", function ExportDialogComponent_Template_span_click_16_listener() {
return ctx.onExportAnimatedSvg();
});
_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtext"](17, "Export animated SVG.");
_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtext"](17, "Animated SVG");
_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](18, ExportDialogComponent_Conditional_18_Template, 5, 4);
_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"]()()();
Expand Down Expand Up @@ -5839,7 +5839,13 @@ class ExportService {
this.htmlPresentationService.downloadHTMLPresentation(filename, modeler).then();
}
getStoryForDownload() {
const story = this.rendererService.getStory();
let story = this.rendererService.getStory().sort((objA, objB) => {
if (objA.id !== undefined && objB.id !== undefined) {
return objA.id.localeCompare(objB.id);
} else {
return 0;
}
});
story.push({
info: this.titleService.getDescription()
});
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 d0458d1

Please sign in to comment.