clear composer undo history when sending a message

This commit is contained in:
Bruno Windels 2019-08-20 17:15:52 +02:00
parent 0adca10f9f
commit 9bc8ff7e1e
3 changed files with 10 additions and 0 deletions

View file

@ -18,6 +18,10 @@ export const MAX_STEP_LENGTH = 10;
export default class HistoryManager {
constructor() {
this.clear();
}
clear() {
this._stack = [];
this._newlyTypedCharCount = 0;
this._currentIndex = -1;