Merge pull request #5139 from thornbill/item-details-backdrop-take-57

Refactor item details backdrop handling
This commit is contained in:
Bill Thornton
2024-01-22 00:22:49 -05:00
committed by GitHub
10 changed files with 50 additions and 21 deletions
+2 -2
View File
@@ -213,8 +213,8 @@ function enabled() {
let rotationInterval;
let currentRotatingImages = [];
let currentRotationIndex = -1;
export function setBackdrops(items, imageOptions, enableImageRotation) {
if (enabled()) {
export function setBackdrops(items, imageOptions, enableImageRotation, isEnabled = false) {
if (isEnabled || enabled()) {
const images = getImageUrls(items, imageOptions);
if (images.length) {