discourse/app/assets/javascripts/discourse/controllers/user-posts.js.es6
Robin Ward fab36e6cf7 Fix more deprecations:
- Remove all `needs:` code
2016-10-21 17:28:37 -04:00

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")
});