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/components/strains/strain-details.js
2015-06-01 11:14:01 -08:00

20 lines
526 B
JavaScript

import Ember from 'ember';
export default Ember.Component.extend({
classNames: ['grid-1'],
isEditing: false,
isNew: false,
actions: {
editStrain: function() {
this.get('strain').get('errors').clear();
if (this.get('isNew')) {
this.get('strain').destroyRecord().then(this.sendAction());
}
this.toggleProperty('isEditing');
this.get('strain').rollback();
},
saveStrain: function() {
this.get('strain').save().then(this.toggleProperty('isEditing'));
}
}
});