17 lines
300 B
JavaScript
17 lines
300 B
JavaScript
import Component from "@ember/component";
|
|
import LoadMore from "discourse/mixins/load-more";
|
|
|
|
export default Component.extend(LoadMore, {
|
|
init() {
|
|
this._super(...arguments);
|
|
|
|
this.set("eyelineSelector", this.selector);
|
|
},
|
|
|
|
actions: {
|
|
loadMore() {
|
|
this.action();
|
|
}
|
|
}
|
|
});
|