Skip to content

Commit

Permalink
Merge pull request #33 from magento-mpi/MAGETWO-44396-mb
Browse files Browse the repository at this point in the history
[MPI] Bugfixes MB
  • Loading branch information
Korshenko, Olexii(okorshenko) committed Oct 23, 2015
2 parents f8e1571 + 11a76de commit 193a970
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/code/Magento/Checkout/view/frontend/web/js/sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ define([
};
events['click ' + this.options.item.button] = function(event) {
event.stopPropagation();
self._updateItemQty($(event.target));
self._updateItemQty($(event.currentTarget));
};

this._on(this.element, events);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ $params = $block->getParams();
'Magento_Checkout/js/action/place-order'
],
function(quote, placeOrderAction) {
placeOrderAction(quote.paymentMethod(), true);
placeOrderAction({"method": quote.paymentMethod().method}, true);
}
);
<?php endif; ?>
Expand Down

0 comments on commit 193a970

Please sign in to comment.