Co-Authored-By: Bianca Nenciu <nbianca@users.noreply.github.com> Co-Authored-By: David Taylor <david@taylorhq.com>
16 lines
271 B
JavaScript
16 lines
271 B
JavaScript
import LoadMore from "discourse/mixins/load-more";
|
|
|
|
export default Ember.Component.extend(LoadMore, {
|
|
init() {
|
|
this._super(...arguments);
|
|
|
|
this.set("eyelineSelector", this.get("selector"));
|
|
},
|
|
|
|
actions: {
|
|
loadMore() {
|
|
this.action();
|
|
}
|
|
}
|
|
});
|