Closed mawiegand closed 7 years ago
To enable swiping add jQuery Mobile and insert the following code in home.coffee
$('.carousel').swipe
swipe: (event, direction, distance, duration, fingerCount, fingerData) ->
if direction == 'left'
$(this).carousel 'next'
if direction == 'right'
$(this).carousel 'prev'
return
allowPageScroll: 'vertical'
Code improvement:
$ ->
$('.carousel').swipeleft ->
$(this).carousel 'next'
$('.carousel').swiperight ->
$(this).carousel 'prev'`
Fix Slider mobile layout. Remove side controls and enable swipe.