Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Checkbox does not work on mobile with Desktop Site mode #435

Open
mostafafallah opened this issue Dec 21, 2021 · 4 comments
Open

Checkbox does not work on mobile with Desktop Site mode #435

mostafafallah opened this issue Dec 21, 2021 · 4 comments

Comments

@mostafafallah
Copy link

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

@mostafafallah
Copy link
Author

@hhferreira
Copy link

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

@Fallsleep
Copy link

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

@djaldim
Copy link

djaldim commented Jan 19, 2023

@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 :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants