summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
c782c7a)
The following events are considered as operation:
1. running transaction and redoing transaction
2. undoing transaction
this._undoInProgress = false;
this.redoStack.push(transaction);
this._undoInProgress = false;
this.redoStack.push(transaction);
+ this.trigger('operationEnd');
});
this._transformationLevel--;
this.undoStack.push(transaction);
});
this._transformationLevel--;
this.undoStack.push(transaction);
+ this.trigger('operationEnd');
+
}
if(this._currentTransaction.hasTransformations()) {
this.undoStack.push(this._currentTransaction);
}
if(this._currentTransaction.hasTransformations()) {
this.undoStack.push(this._currentTransaction);
+ this.trigger('operationEnd');
}
this._currentTransaction = null;
},
}
this._currentTransaction = null;
},