Ghost/ghost/admin/app/components/gh-infinite-scroll.js

13 lines
273 B
JavaScript
Raw Normal View History

import Ember from 'ember';
import InfiniteScrollMixin from 'ghost-admin/mixins/infinite-scroll';
const {Component} = Ember;
export default Component.extend(InfiniteScrollMixin, {
actions: {
checkScroll() {
this._checkScroll();
}
}
});