mirror of
https://github.com/discourse/discourse.git
synced 2024-12-16 23:53:43 +08:00
8 lines
218 B
JavaScript
8 lines
218 B
JavaScript
export default Ember.Controller.extend({
|
|
needs: ["application"],
|
|
|
|
_showFooter: function() {
|
|
this.set("controllers.application.showFooter", !this.get("model.canLoadMore"));
|
|
}.observes("model.canLoadMore")
|
|
});
|