mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-09 04:54:54 +00:00
18 lines
316 B
Plaintext
18 lines
316 B
Plaintext
|
export default Ember.Controller.extend({
|
||
|
queryParams: ["order", "descending"],
|
||
|
order: null,
|
||
|
descending: true,
|
||
|
|
||
|
actions: {
|
||
|
loadMore() {},
|
||
|
|
||
|
orderPayments(order) {
|
||
|
if (order === this.get("order")) {
|
||
|
this.toggleProperty("descending");
|
||
|
}
|
||
|
|
||
|
this.set("order", order);
|
||
|
}
|
||
|
}
|
||
|
});
|