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 | 71 | }); |
| 72 | 72 | if(w==0) { |
| 73 | 73 | $(".black").removeClass("hidden"); |
| 74 | - $(".black_close").click(function () { | |
| 74 | + $(".black_close").click(function (event) { | |
| 75 | + event.preventDefault(); | |
| 75 | 76 | $(this).parent().parent().addClass("hidden"); |
| 76 | 77 | }); |
| 77 | 78 | $(".cont_shop").click(function () { | ... | ... |