jquery.pageless icon indicating copy to clipboard operation
jquery.pageless copied to clipboard

call to startListener() on "page:load" for turbolinks

Open luctus opened this issue 10 years ago • 1 comments

If I scroll down to the end, the method stopListener() is called, then I go to another page, and finally come back to this page, pageless won't work, because it's not listening.

luctus avatar Jun 11 '14 20:06 luctus

I'm not sure if this is the most elegant solution, but it's working for me.

I added this to the begining of the main function:

$(document).on('page:load', function(){
  settings.currentPage = 1;
  settings.distance = 100;
  settings.inited = FALSE;
});

luctus avatar Jun 11 '14 21:06 luctus