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/controllers/strains/show.js
2015-04-27 10:27:20 -08:00

14 lines
339 B
JavaScript

import Ember from 'ember';
export default Ember.Controller.extend({
isEditing: false,
actions: {
editStrain: function() {
this.get('model').get("errors").clear();
this.toggleProperty('isEditing');
},
saveStrain: function() {
this.get('model').save().then(this.toggleProperty('isEditing'));
}
}
});