Created
June 11, 2013 15:17
-
-
Save ghooghe/5757715 to your computer and use it in GitHub Desktop.
Transfer click event to tap, only if not on a touch device
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Transfer click event to tap, only if not on a touch device | |
| if (!('ontouchend' in window)) { | |
| $(document).delegate('body', 'click', function(e) { | |
| $(e.target).trigger('tap'); | |
| }); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment