Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
18 Zeilen
485 B
JavaScript
18 Zeilen
485 B
JavaScript
import { getOwner } from 'discourse-common/lib/get-owner';
|
|
import { on } from 'discourse-common/utils/decorators';
|
|
import { newInput } from '../lib/custom-wizard';
|
|
|
|
export default Ember.Component.extend({
|
|
classNames: 'custom-inputs',
|
|
|
|
actions: {
|
|
add() {
|
|
if (!this.get('inputs')) this.set('inputs', Ember.A());
|
|
this.get('inputs').pushObject(newInput(this.options));
|
|
},
|
|
|
|
remove(input) {
|
|
this.get('inputs').removeObject(input);
|
|
}
|
|
}
|
|
});
|