Advertisement
developerjustin

Untitled

Feb 11th, 2014
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         $(".swipe").swipe( { swipeLeft:swipe1, swipeRight:swipe1, allowPageScroll:"vertical"} );
  2.    
  3.         //Swipe handlers.
  4.         var swipe1 = function swipe1(event, direction) {
  5.             $(this).hide();
  6.             mySwiper.swipeNext();
  7.             brewerySwiper.swipeNext(); 
  8.         }
  9.    
  10.         var swipe2 = function swipe2(event, phase, direction, distance) {
  11.             $(this).hide();
  12.             mySwiper.swipePrev();
  13.             brewerySwiper.swipePrev();
  14.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement