Swipe gestures not working in Cycle2

Swipe gestures not working in Cycle2

I'm using the Cycle2 plugin to try and add swipe support for my slideshow on mobile devices as per http://jquery.malsup.com/cycle2/demo/swipe.php

However I can't seem to get it to work. My options are set like so:
  1. $(document).ready(function(){
  2.     $('.cycle > .content .content').cycle({
  3.         fx: 'scrollHorz',
  4.         speed: 350,
  5.         timeout: 5000,
  6.         next: '.next',
  7.         prev: '.prev',
  8.         slides: 'figure',
  9.         swipe: true
  10.     });
  11. });
I've also tried removing the links from the images incase they were interfering but no luck. I can navigate the slides with the next / prev buttons, but not swipe gestures.

Here is a link to the page — http://bit.ly/28KW4ye

Can anyone see what I'm doing wrong?

http://www.mattpealing.co.uk