2016-06-30 21:14:25 +03:00
|
|
|
import Component from 'ember-component';
|
2016-05-24 15:06:59 +03:00
|
|
|
import InfiniteScrollMixin from 'ghost-admin/mixins/infinite-scroll';
|
2015-06-13 17:34:09 +03:00
|
|
|
|
2016-01-26 01:25:46 +03:00
|
|
|
export default Component.extend(InfiniteScrollMixin, {
|
|
|
|
actions: {
|
|
|
|
checkScroll() {
|
|
|
|
this._checkScroll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|