diff options
Diffstat (limited to 'web/source/frontend/index.js')
| -rw-r--r-- | web/source/frontend/index.js | 5 |
1 files changed, 5 insertions, 0 deletions
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 ( |
