Skip to content

Instantly share code, notes, and snippets.

@fidlerryan
Created May 20, 2015 14:10
Show Gist options
  • Save fidlerryan/7f6d1c5a0887c7733a60 to your computer and use it in GitHub Desktop.
Save fidlerryan/7f6d1c5a0887c7733a60 to your computer and use it in GitHub Desktop.
Add Touch Navigation to Joomla's Vinaora Nivo Slider
jQuery('#vt_nivo_slider<?php echo $module_id; ?>').bind('swipeleft', function(e){
jQuery('a.nivo-nextNav').trigger('click');
e.stopImmediatePropagation();
return false;
});
jQuery('#vt_nivo_slider<?php echo $module_id; ?>').bind('swiperight', function(e){
jQuery('a.nivo-prevNav').trigger('click');
e.stopImmediatePropagation();
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment