Release v2.5.3

This commit is contained in:
2026-08-03 20:04:43 +01:00
parent 9d5029eff6
commit a5e8ecb21f
8 changed files with 106 additions and 11 deletions
+6 -2
View File
@@ -434,8 +434,12 @@ import { createSlideFormPreviewHelpers } from '/assets/js/slides/slide-form-prev
};
}
function buildPreviewPopupHash() {
return encodeURIComponent(JSON.stringify(buildPreviewPopupPayload()));
}
function buildPreviewPopupUrl() {
return '/slides/popup-preview#' + encodeURIComponent(JSON.stringify(buildPreviewPopupPayload()));
return '/slides/popup-preview#' + buildPreviewPopupHash();
}
function syncPopupPreview() {
@@ -444,7 +448,7 @@ import { createSlideFormPreviewHelpers } from '/assets/js/slides/slide-form-prev
return;
}
previewPopupWindow = window.open(buildPreviewPopupUrl(), 'slide-preview-popup', previewPopupFeatures);
previewPopupWindow.location.hash = buildPreviewPopupHash();
}
function openPreviewPopup() {