<?php | |
/** | |
* Body Classes | |
* | |
*/ | |
function be_body_classes( $classes ) { | |
$classes[] = 'no-touch'; | |
return $classes; | |
} | |
add_filter( 'body_class', 'be_body_classes' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
So in this instance, are you then just killing any hover states via css to do the work around? Just curious how you would approach the hover issue on iOS... I suppose you could also always do something like
$('#element').tap()....