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