Skip to content

Instantly share code, notes, and snippets.

@is8r
Last active May 2, 2016 09:27
Show Gist options
  • Save is8r/723cf7a62ae5ca88b5c1dd922f79dce7 to your computer and use it in GitHub Desktop.
Save is8r/723cf7a62ae5ca88b5c1dd922f79dce7 to your computer and use it in GitHub Desktop.
$(document).on('ready', function() {
var $target = $('.js-swipenavigation');
var hasTapEvent = ('ontouchstart' in window);
if(hasTapEvent) {
$target.find('a').each(function(index, el) {
var $el = $(el);
$el.addClass('hover-disabled');
$el.on('touchstart', function(event) {
$el.addClass('touch');
});
$el.on('touchend', function(event) {
$el.removeClass('touch');
});
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment