Skip to content

Commit

Permalink
ENGCOM-4400: Static test fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
p-bystritsky committed Mar 6, 2019
1 parent 539766f commit fd3344b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ define([
var items, i, reload;

$(this.options.emptyCartButton).on('click', $.proxy(function (event) {
if (event.detail == 0) {
if (event.detail === 0) {
return;
}

Expand Down

1 comment on commit fd3344b

@miteshdhaduk
Copy link

@miteshdhaduk miteshdhaduk commented on fd3344b Nov 2, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not working in Magento 2.3.0. How to fix this in Magento 2.3.0 and lower version. Does anyone have an any idea?

Please sign in to comment.