minicart
minicart copied to clipboard
Close button on modal popup and per item not working
The example at http://minicartjs.com/ is not working fully.
- The modal cross (top right hand corner of the popup) does nothing
- The line item crosses do not work.
Attached is:
- a zip of MP4 video showing the bug
- screenshot of my browser
Is minicart.js still supported? Can't believe no one has replied.
Sorry for the 1 year, but I found the problem...
You're probably using a touch laptop and Chrome turns on the event "ontouchstart" by default. I found in .js the part that creates the "x" event and if "ontouchstart" is enabled, the code does not create this event.
To fix it you need to delete this part "('ontouchstart' in window)? 'Touchstart' :" on line 2793 of minicart.js instead of "events.add (document, ('ontouchstart' in window)? 'Touchstart' : 'Click', viewevents.click, this);".
It will look like this: "events.add (document, 'click', viewevents.click, this);"