From c1ff0de3705ef5a2c10a342c371b7ae7b7eabcd7 Mon Sep 17 00:00:00 2001 From: Stanislav Idolov <sidolov@ebay.com> Date: Thu, 2 Jul 2015 11:39:19 +0300 Subject: [PATCH] MAGETWO-39446: "Place Order" button should be disabled until billing address is set -- fixes after CR --- .../Checkout/view/frontend/web/js/view/billing-address.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/billing-address.js b/app/code/Magento/Checkout/view/frontend/web/js/view/billing-address.js index 5f6dbfed0b8..93a5a281662 100644 --- a/app/code/Magento/Checkout/view/frontend/web/js/view/billing-address.js +++ b/app/code/Magento/Checkout/view/frontend/web/js/view/billing-address.js @@ -16,7 +16,7 @@ define( 'mage/translate' ], function (ko, Component, customer, addressList, quote, createBillingAddress, selectBillingAddress, $t) { - "use strict"; + 'use strict'; var lastSelectedBillingAddress = null, newAddressOption = { @@ -116,7 +116,7 @@ define( } }, - restoreBillingAddress: function() { + restoreBillingAddress: function () { if (lastSelectedBillingAddress != null) { selectBillingAddress(lastSelectedBillingAddress); } -- GitLab