Skip to content

Instantly share code, notes, and snippets.

View SuperFuentes's full-sized avatar

Anthony Fuentes SuperFuentes

View GitHub Profile
To add a click event, we added the following to the line after evt.target.removeEventListener("touchend", self.handleTouchEnd); (but, before the self.fired=false;)
if (!self.fired) {
if(jQuery(this).parents(".views_slideshow_cycle_slide").length > 0) {
var link = jQuery(this).parents(".views_slideshow_cycle_slide").find("a").attr("href");
if (link.length > 0) document.location.href = link;
}
}