From 6c1bfe0cbd5b7568bd66da243649701473ab300b Mon Sep 17 00:00:00 2001 From: BC-tymurbiedukhin <66319629+BC-tymurbiedukhin@users.noreply.github.com> Date: Wed, 25 Nov 2020 14:54:37 +0200 Subject: [PATCH] fix(storefront): BCTHEME-104 Selecting product options doesn't update image on PDP in Internet Explorer (#1913) --- CHANGELOG.md | 1 + assets/js/theme/product/image-gallery.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d93eafd98..97bb8da13b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog ## Draft +- Selecting product options doesn't update image on PDP in Internet Explorer. [#1913](https://github.com/bigcommerce/cornerstone/pull/1913) - HTML Entity displayed as is via system/error message on a Storefront. [#1888](https://github.com/bigcommerce/cornerstone/pull/1888) - Shoppers are not anchor-linked to reviews on PDPs if product description tabs are enabled. [#1883](https://github.com/bigcommerce/cornerstone/pull/1883) - Fixed text contrast for brand name on Cart page. [#1882](https://github.com/bigcommerce/cornerstone/pull/1882) diff --git a/assets/js/theme/product/image-gallery.js b/assets/js/theme/product/image-gallery.js index 3032b57095..4f65e87585 100644 --- a/assets/js/theme/product/image-gallery.js +++ b/assets/js/theme/product/image-gallery.js @@ -78,7 +78,7 @@ export default class ImageGallery { if (isBrowserIE) { const fallbackStylesIE = { - 'background-image': `url(${this.currentImage.mainImageUrl}&imbypass=on)`, + 'background-image': `url(${this.currentImage.mainImageUrl})`, 'background-position': 'center', 'background-repeat': 'no-repeat', 'background-origin': 'content-box',