mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-12 14:35:01 +00:00
9 lines
176 B
JavaScript
9 lines
176 B
JavaScript
export default Ember.Component.extend({
|
|
actions: {
|
|
clickPlan(plan) {
|
|
this.plans.map(p => p.set("selected", false));
|
|
plan.set("selected", true);
|
|
}
|
|
}
|
|
});
|