/** This mixin provides the ability to load more items for a view which is scrolled to the bottom. @class Discourse.LoadMore @extends Ember.Mixin @uses Discourse.Scrolling @namespace Discourse @module Discourse **/ Discourse.LoadMore = Em.Mixin.create(Discourse.Scrolling, { scrolled: function(e) { var eyeline = this.get('eyeline'); if (eyeline) { eyeline.update(); } }, loadMore: function() { console.error('loadMore() not defined'); }, didInsertElement: function() { this._super(); var eyeline = new Discourse.Eyeline(this.get('eyelineSelector')); this.set('eyeline', eyeline); var paginatedTopicListView = this; eyeline.on('sawBottom', function() { paginatedTopicListView.loadMore(); }); this.bindScrolling(); }, willDestroyElement: function() { this._super(); this.unbindScrolling(); } });