icheck icon indicating copy to clipboard operation
icheck copied to clipboard

Checkbox does not work on mobile with Desktop Site mode

Open mostafafallah opened this issue 3 years ago • 4 comments

clicking checkbox does not work in chrome on mobile with Desktop Site mode

mostafafallah avatar Dec 21 '21 09:12 mostafafallah

I tried to show you the issue in this movie https://user-images.githubusercontent.com/1159697/146904888-9cf9acad-99ab-4e58-bf62-9805e24c1ba0.mp4

mostafafallah avatar Dec 21 '21 09:12 mostafafallah

Any workaround for this? We have the same issue using a surface pro 8

hhferreira avatar Jan 20 '22 12:01 hhferreira

findsuch code

if (_mobile) {
  event.stopPropagation();
} else {
  return false;
}

and change both 2 if (_mobile) to if (_mobile) /in|nd/.test(type).

if(_mobile) to if (_mobile) /in|nd/.test(d) in iCheck.min.js 1.0.2 if(G) to if (G) /in|nd/.test(n) in iCheck.min.js 1.0.3

Fallsleep avatar Nov 08 '22 08:11 Fallsleep

@Fallsleep , I had the same issue and I follow your tips.

But I did some different: I changed the Regex validation to this:

Regex with issue: /ip(hone|od|ad)|android|blackberry|windows phone|opera mini|silk/

To this: /ip(hone|od|ad)|android|blackberry|windows phone|opera mini|silk|in|nd/

I hope this can help someone :)

djaldim avatar Jan 19 '23 19:01 djaldim