ng-iScroll
ng-iScroll copied to clipboard
Click on links not working in desktops
When using a touch screen device on a desktop computer the it appears that sometimes it emulates a touch device and will make links un-clickable. The solution for this is to set the ngiScroll_opts to the following:
var ngiScroll_opts = {
snap: true,
momentum: true,
hScrollbar: false,
click: true, //add this line
tap: true //and this line
};