mirror of
https://github.com/discourse/discourse.git
synced 2025-02-11 14:23:17 +08:00
8 lines
212 B
JavaScript
8 lines
212 B
JavaScript
export default Ember.ObjectController.extend({
|
|
needs: ["application"],
|
|
|
|
_showFooter: function() {
|
|
this.set("controllers.application.showFooter", !this.get("canLoadMore"));
|
|
}.observes("canLoadMore")
|
|
});
|