This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/login/login-form/component.js
2015-11-11 13:01:23 -07:00

19 lines
384 B
JavaScript

import Ember from 'ember';
const { Component } = Ember;
export default Component.extend({
// Actions
"on-submit": null,
// Property mapping
propertiesList: ['identification', 'password'],
identification: null,
password: null,
actions: {
submit: function() {
return this.attrs['on-submit'](this.get('identification'), this.get('password'));
},
},
});