Skip to content

Instantly share code, notes, and snippets.

@icyJoseph
Created September 12, 2018 16:38
Show Gist options
  • Save icyJoseph/d7ec16f12e79337f8a38d480dcb8722f to your computer and use it in GitHub Desktop.
Save icyJoseph/d7ec16f12e79337f8a38d480dcb8722f to your computer and use it in GitHub Desktop.
Make the body in iOS touch screens clickable again
export const bodyClickFix = cb => {
if ("ontouchstart" in document.documentElement) {
const highlight = "-webkit-tap-highlight-color";
document.body.style.cursor = "pointer";
document.body.style[highlight] = "transparent";
}
return cb();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment