Enhancement: undo/redo for textEditor

Hi.
A fast and easy suggestion of enhancement for the text editor, with two convinient commands : undo and redo. The icons even already exist in both f7 and material. Just add these two lines to const textEditorButtonsMap :

const textEditorButtonsMap = {
      // f7-icon, material-icon, command
      undo: ['arrow_uturn_left', 'undo', 'undo'],
      redo: ['arrow_uturn_right', 'redo', 'redo'],
1 Like