TimHeckel / meteor-paginator

Simple data pagination with Meteor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[resolved] 'Popping' issue

olivierpascal opened this issue · comments

How to avoid the 'popping' issue of the table showed on the demo site, when the page change?

http://multipage.meteor.com

Found a simple workaround.

In the client template: instead of doing this

Template.my_template.person = function() {
return MyCollection.find();
};

rather return MyCollection.find({}, {limit: Session.get('pagingLimit')});