- Fix
getLimit()
function (thanks @mizsha)
- Add
getLimit()
method to reactively retrieve the current limit, fixes #16
- Clear window events when the template is destroyed, fixes #15
- Add back loadingTemplateName helper
- Add default loading indicator as a template
- Customizable container and loading template (thanks @VolodymyrTymets)
- Removed dburles:mongo-collection-instances dependency (thanks @mizsha)
- Rewritten demo application
- Removed
dburles:mongo-collection-instances
dependency, thanks @mizsha
- Added
ecmascript
dependency, thanks @JulianKingman
- Thanks to @mikepaszkiewicz for his contribution to this release.
- Added example application
- Collection is now looked up by name
- No more
app
globals
- Remove dependency on Counts, didn't work out so well
- Customizable class on the loader template
- Exposes
InfiniteScroll.triggerLoadMore
so you can use custom scroll regions (eg.this.$('.results-list').on('resize scroll', _.throttle(InfiniteScroll.triggerLoadMore, 300));
)
- Added check package to dependencies
- Add sort functionality
- Added Tracker.afterFlush when checking to load more data
- Overhauled reliability of the loader template and triggers
- Removed
Template.instance().infiniteReady()
in favor ofTemplate.instance().infiniteSub.ready()
- New dependency on
tmeasday:publish-counts
for more reliable loading
- Fixed an issue with tall window heights
- Requires Meteor 1.2 or greater
- Fixed a bug where the loader would not show on the initial subscription load
- Fixed a bug where the subscription query would be mutated by the call to Meteor.subscribe
- Minor fixes
- Added
subManager
property to set the subscription on ameteorhacks:subs-manager
Subscription Manager instead of the template. This allows the data to persist when the template is destroyed.
- Initial release