discourse/app/assets/javascripts/discourse/controllers/users.js.es6
Régis Hanol 35e6e5ff67 FIX: footer was missing in some pages
- error pages
- search results pages
- list of all tags
- topics list of a specific tag
- user leaderboard
2015-08-05 16:14:26 +02:00

25 lines
598 B
JavaScript

export default Ember.Controller.extend({
needs: ["application"],
queryParams: ["period", "order", "asc", "name"],
period: "weekly",
order: "likes_received",
asc: null,
name: "",
showTimeRead: Ember.computed.equal("period", "all"),
_setName: Discourse.debounce(function() {
this.set("name", this.get("nameInput"));
}, 500).observes("nameInput"),
_showFooter: function() {
this.set("controllers.application.showFooter", !this.get("model.canLoadMore"));
}.observes("model.canLoadMore"),
actions: {
loadMore() {
this.get("model").loadMore();
}
}
});