ng-iScroll icon indicating copy to clipboard operation
ng-iScroll copied to clipboard

Click on links not working in desktops

Open LukePammant opened this issue 11 years ago • 0 comments

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
};

LukePammant avatar Oct 02 '14 19:10 LukePammant