Commit 577d7327ad7596aa4af53e7407a08097d421960d
1 parent
61bae627
image size
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
frontend/web/js/basket.js
@@ -71,7 +71,8 @@ | @@ -71,7 +71,8 @@ | ||
71 | }); | 71 | }); |
72 | if(w==0) { | 72 | if(w==0) { |
73 | $(".black").removeClass("hidden"); | 73 | $(".black").removeClass("hidden"); |
74 | - $(".black_close").click(function () { | 74 | + $(".black_close").click(function (event) { |
75 | + event.preventDefault(); | ||
75 | $(this).parent().parent().addClass("hidden"); | 76 | $(this).parent().parent().addClass("hidden"); |
76 | }); | 77 | }); |
77 | $(".cont_shop").click(function () { | 78 | $(".cont_shop").click(function () { |