mirror of
https://github.com/discourse/discourse.git
synced 2025-02-10 02:02:02 +08:00
8 lines
222 B
JavaScript
8 lines
222 B
JavaScript
export default Ember.Controller.extend({
|
|
application: Ember.inject.controller(),
|
|
|
|
_showFooter: function() {
|
|
this.set("application.showFooter", !this.get("model.canLoadMore"));
|
|
}.observes("model.canLoadMore")
|
|
});
|