From f7323c065a086533ce8c7f0f0cb3f69a80539992 Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Sat, 26 Apr 2025 15:03:05 +0200 Subject: [feature] Update attachment format, receive + send `focalPoint` prop + use it on the frontend (#4052) * [feature] Update attachment format, receive + send `focalPoint` prop + use it on the frontend * whoops * boop * restore function signature of ExtractAttachments --- web/source/frontend/index.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'web/source/frontend/index.js') diff --git a/web/source/frontend/index.js b/web/source/frontend/index.js index 47879b2e2..a1c2ca74b 100644 --- a/web/source/frontend/index.js +++ b/web/source/frontend/index.js @@ -29,6 +29,7 @@ const Photoswipe = require("photoswipe/dist/umd/photoswipe.umd.min.js"); const PhotoswipeLightbox = require("photoswipe/dist/umd/photoswipe-lightbox.umd.min.js"); const PhotoswipeCaptionPlugin = require("photoswipe-dynamic-caption-plugin").default; +const ObjectPosition = require("./photoswipe-object-position.js").default; const Plyr = require("plyr"); const Prism = require("./prism.js"); @@ -61,6 +62,10 @@ new PhotoswipeCaptionPlugin(lightbox, { } }); +// Enable object-position plugin for lightbox so that css +// object-position property can be used on preview images. +new ObjectPosition(lightbox); + lightbox.addFilter('itemData', (item) => { const el = item.element; if ( -- cgit v1.2.3