wizard-custom-action.js.es6 398 B

12345678
  1. export default Ember.Component.extend({
  2. classNames: 'wizard-custom-action',
  3. types: ['create_topic', 'update_profile', 'send_message'],
  4. profileFields: ['name', 'username', 'email'],
  5. createTopic: Ember.computed.equal('action.type', 'create_topic'),
  6. updateProfile: Ember.computed.equal('action.type', 'update_profile'),
  7. sendMessage: Ember.computed.equal('action.type', 'send_message')
  8. });