Skip to content

Commit b081872

Browse files
author
Oleksii Korshenko
committed
MAGETWO-44084: There is no block/message on frontend for "accept cookies" if Cookie Restriction Mode = Yes
1 parent d3607fd commit b081872

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

app/code/Magento/Checkout/view/frontend/web/js/action/set-billing-address.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,12 @@ define(
5555
serviceUrl, JSON.stringify(payload)
5656
).done(
5757
function () {
58+
var deferred = null;
59+
5860
if (!quote.isVirtual()) {
5961
getTotalsAction([]);
6062
} else {
61-
var deferred = $.Deferred();
63+
deferred = $.Deferred();
6264
getPaymentInformationAction(deferred);
6365
$.when(deferred).done(function () {
6466
fullScreenLoader.stopLoader();

dev/tests/static/testsuite/Magento/Test/Js/_files/blacklist/magento.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,9 @@ app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/summ
173173
app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/variations.js
174174
app/code/Magento/ConfigurableProduct/view/frontend/requirejs-config.js
175175
app/code/Magento/ConfigurableProduct/view/frontend/web/js/configurable.js
176-
app/code/Magento/Cookie/View/adminhtml/requirejs-config.js
177-
app/code/Magento/Cookie/View/frontend/requirejs-config.js
178-
app/code/Magento/Cookie/View/frontend/web/js/notices.js
179-
app/code/Magento/Cookie/View/frontend/web/js/require-cookie.js
176+
app/code/Magento/Cookie/view/adminhtml/requirejs-config.js
177+
app/code/Magento/Cookie/view/frontend/requirejs-config.js
178+
app/code/Magento/Cookie/view/frontend/web/js/require-cookie.js
180179
app/code/Magento/Customer/view/adminhtml/requirejs-config.js
181180
app/code/Magento/Customer/view/adminhtml/web/edit/tab/js/addresses.js
182181
app/code/Magento/Customer/view/frontend/requirejs-config.js

0 commit comments

Comments
 (0)