mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:48:45 +08:00
24 lines
388 B
JavaScript
24 lines
388 B
JavaScript
export default Ember.Component.extend({
|
|
tagName: "",
|
|
|
|
buffer: "",
|
|
editing: false,
|
|
|
|
init() {
|
|
this._super(...arguments);
|
|
this.set("editing", false);
|
|
},
|
|
|
|
actions: {
|
|
edit() {
|
|
this.set("buffer", this.value);
|
|
this.toggleProperty("editing");
|
|
},
|
|
|
|
save() {
|
|
// Action has to toggle 'editing' property.
|
|
this.action(this.buffer);
|
|
}
|
|
}
|
|
});
|