fb239054a0
follow up from #95 - converts components to use ember-cli-shims
11 lines
259 B
JavaScript
11 lines
259 B
JavaScript
import Component from 'ember-component';
|
|
import InfiniteScrollMixin from 'ghost-admin/mixins/infinite-scroll';
|
|
|
|
export default Component.extend(InfiniteScrollMixin, {
|
|
actions: {
|
|
checkScroll() {
|
|
this._checkScroll();
|
|
}
|
|
}
|
|
});
|