botelho / flipboard-layout

An experimental page layout that let's you navigate pages by swiping or dragging as in a booklet, inspired by Flipboard.
639 stars 155 forks source link

Mobile issues #6

Open markwag123 opened 11 years ago

markwag123 commented 11 years ago

Everything seems to be working fine with the flip/page turning effect but nothing happens once you click onto the articles. Any advice on how I can make this work for mobile devices.

Thanks for your help

D7CODER commented 10 years ago

Hi Markwag, I'm just wondering , did you find any solutions for this mobile clicking issue ?

superprat commented 10 years ago

Change in jquery.flips.js

this.$flipPages.find( '.box' ).on( 'click.flips', function( event )

to

this.$flipPages.find( '.box' ).swipe({
click: function( event ) {  
}
});