Skip to content

Commit a756500

Browse files
committed
[MFTF] Investigate compatibility issue with latest version jquery-ui
1 parent 050c464 commit a756500

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

app/code/Magento/Msrp/view/base/web/js/msrp.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ define([
5757
closeOnMouseLeave: false,
5858
autoPosition: true,
5959
closeOnClickOutside: false,
60-
'dialogClass': 'popup map-popup-wrapper',
60+
classes: {
61+
"ui-dialog": "popup map-popup-wrapper"
62+
},
6163
position: {
6264
my: 'left top',
6365
collision: 'fit none',

app/code/Magento/Msrp/view/frontend/web/js/product/list/columns/msrp-price.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ define([
2222
dialogContentClass: 'active',
2323
closeOnMouseLeave: false,
2424
autoPosition: true,
25-
dialogClass: 'popup map-popup-wrapper',
25+
classes: {
26+
"ui-dialog": "popup map-popup-wrapper"
27+
},
2628
position: {
2729
my: 'left top',
2830
collision: 'fit none',

app/code/Magento/Swatches/view/base/web/js/swatch-renderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ define([
798798

799799
$widget._Rebuild();
800800

801-
if ($priceBox.is(':data(mage-priceBox)')) {
801+
if ($priceBox.data('mage-priceBox') !== undefined) {
802802
$widget._UpdatePrice();
803803
}
804804

0 commit comments

Comments
 (0)