},
toggleComplete: function() {
if (this.model.get("completed")) {
- this.stopEditingText();
- this.model.toggleComplete();
- this.startEditingText(); // TODO: Don't lose place
+ var self = this;
+ this._maintainingFocus(function() {
+ self.stopEditingText();
+ self.model.toggleComplete();
+ });
} else {
this.stopEditingText();
this.model.toggleComplete();
},
toggleComplete: function() {
if (this.model.get("completed")) {
- this.stopEditingText();
- this.model.toggleComplete();
- this.startEditingText(); // TODO: Don't lose place
+ var self = this;
+ this._maintainingFocus(function() {
+ self.stopEditingText();
+ self.model.toggleComplete();
+ });
} else {
this.stopEditingText();
this.model.toggleComplete();
},
toggleComplete: function() {
if (this.model.get("completed")) {
- this.stopEditingText();
- this.model.toggleComplete();
- this.startEditingText(); // TODO: Don't lose place
+ var self = this;
+ this._maintainingFocus(function() {
+ self.stopEditingText();
+ self.model.toggleComplete();
+ });
} else {
this.stopEditingText();
this.model.toggleComplete();